An array of component instances.
A variable number of child nodes to be added.
The callback function.
The parameters passed to the callback function.
The specified node.
A Boolean value indicating whether the current node contains the specified node.
Whether to destroy child nodes as well. If true, all child nodes will be destroyed recursively; otherwise, they will only be removed from the parent.
Destroy this node. When a node is destroyed, it will be removed from its parent node and the references will be cleared, waiting for the garbage collector to recycle it. When destroying a node, its own event listeners, timer listeners, child objects will be removed, and it will be removed from its parent node.
The type of event.
可选
data: any(Optional) Data to pass to the callback. If multiple parameters p1, p2, p3, ... need to be passed, use an array structure such as [p1, p2, p3, ...]. If a single parameter p needs to be passed and p is an array, use a structure such as [p]. For other single parameters p, you can directly pass parameter p. If data is Event.EMPTY, it means passing an Event object to the callback function. Note that it is not passing Event.TEMP, but an independent Event object.
True if there are listeners for this event type, false otherwise.
The interval between executions, in frames.
The execution scope of the callback function (this).
The callback function.
The parameters passed to the callback function.
Whether to override the previous delayed execution. The default value is true.
The delay time, in frames.
The execution scope of the callback function (this).
The callback function.
The parameters passed to the callback function.
Whether to override the previous delayed execution. The default value is true.
The node to check.
True if this node is an ancestor of the given node, false otherwise.
The type of event.
The listener function.
This EventDispatcher object.
The type of event.
The execution scope of the event listener function.
可选
listener: FunctionThe listener function.
可选
args: any[]This EventDispatcher object.
可选
type: string(Optional) The type of event. If the value is null, all types of listeners on this object are removed.
This EventDispatcher object.
The type of event.
The listener function.
This EventDispatcher object.
The type of event.
The execution scope of the event listener function.
The listener function.
可选
args: any[](Optional) The callback parameters of the event listener function.
This EventDispatcher object.
The type of event.
The listener function.
This EventDispatcher object.
The type of event.
The execution scope of the event listener function.
The listener function.
可选
args: any[](Optional) The callback parameters of the event listener function.
This EventDispatcher object.
The node itself.
The interval between executions, in milliseconds.
The execution scope of the callback function (this).
The callback function.
The parameters passed to the callback function.
Whether to override the previous delayed execution. The default value is true.
Whether the callback should be executed when the timer jumps frames. The default value is false. If set to true, the callback will be executed multiple times in a single frame if possible, for performance reasons.
The delay time, in milliseconds.
The execution scope of the callback function (this).
The callback function.
The parameters passed to the callback function.
Whether to override the previous delayed execution. The default value is true.
En
The
Node
class is the base class for all objects that can be placed in the display list. The display list manages all objects displayed in the runtime of Laya. Use the Node class to arrange the display list. A Node object can have child display objects.Zh
Node
类是可放在显示列表中的所有对象的基类。 该显示列表管理 LayaAir 运行时中显示的所有对象。使用 Node 类排列显示列表中的显示对象。Node 对象可以有子显示对象。