/ Published in: ActionScript 3
Draw s simple shape in as3
Expand |
Embed | Plain Text
var shape:Shape = new Shape; shape.graphics.beginFill(0x002200); shape.graphics.drawRoundRect(0, 0, 100, 100, 2); shape.graphics.endFill() addChild(shape);
You need to login to post a comment.
