The top-most display object in the portion of the display list's tree structure.
Source
DisplayObject get root { DisplayObject obj = this; while(obj.parent != null) obj = obj.parent; return obj; }
The top-most display object in the portion of the display list's tree structure.
DisplayObject get root { DisplayObject obj = this; while(obj.parent != null) obj = obj.parent; return obj; }