UNPKG

awayjs-display

Version:
15 lines (14 loc) 527 B
import DisplayObject from "../display/DisplayObject"; import INode from "../partition/INode"; /** * IDisplayObjectNode is an interface for the constructable class definition EntityNode that is used to * create node objects in the partition pipeline that represent the contents of a Entity * * @class away.pool.IDisplayObjectNode */ interface IDisplayObjectNode extends INode { _iUpdateQueueNext: IDisplayObjectNode; displayObject: DisplayObject; isSceneGraphNode: boolean; } export default IDisplayObjectNode;