0
說我有使用Shape.graphics'的moveTo()和了lineTo()方法具有若干邊緣繪製的線。我可以稍後修改其中一條邊嗎?例如:修改形狀AS3
var line:Shape = new Shape();
line.graphics.lineStyle(2, 0x000000, .75);
line.graphics.moveTo(10,10);
line.graphics.lineTo(50,50); // Can I modify coordinates of the edge created on this line?
謝謝。
幾乎我在做什麼。只是想確定,謝謝。 – astralmaster