Say I have a maskRectange:Shape, and I don’t have to add it to the display list before use it as a mask:
var s:Shape = new Shape();
s.drawRect(...);
something.mask = s;
//addChild(s); // No need.
addChild(something);
Just want to make sure this.
Say I have a maskRectange:Shape, and I don’t have to add it to the display list before use it as a mask:
var s:Shape = new Shape();
s.drawRect(...);
something.mask = s;
//addChild(s); // No need.
addChild(something);
Just want to make sure this.
:: Copyright KIRUPA 2024 //--