| 16442 | //class laya.display.Node extends laya.events.EventDispatcher |
| 16443 | var Node=(function(_super){ |
| 16444 | function Node(){ |
| 16445 | /**@private */ |
| 16446 | this._bits=0; |
| 16447 | /**@private 父节点对象*/ |
| 16448 | this._parent=null; |
| 16449 | /**节点名称。*/ |
| 16450 | this.name=""; |
| 16451 | /**[只读]是否已经销毁。对象销毁后不能再使用。*/ |
| 16452 | this.destroyed=false; |
| 16453 | this.data=null; |
| 16454 | Node.__super.call(this); |
| 16455 | this._children=Node.ARRAY_EMPTY; |
| 16456 | this._$P=Node.PROP_EMPTY; |
| 16457 | this.timer=Laya.timer; |
| 16458 | this.createGLBuffer(); |
| 16459 | } |
| 16460 | |
| 16461 | __class(Node,'laya.display.Node',_super); |
| 16462 | var __proto=Node.prototype; |