The Sprite3D class is used to implement 3D sprites.

Sprite3D 类用于实现3D精灵。

层级 (查看层级一览)

构造函数

  • 参数

    • 可选name: string

      Sprite name.

    • 可选isStatic: boolean

      Whether it is static.

    返回 Sprite3D

    Creates an instance of the Sprite3D class.

    创建 Sprite3D 类的实例。

属性

name: string = ""

Node name.

节点名称。

tag: string

Node tag.

节点标签。

WORLDINVERTFRONT: number

Indicates the front face direction. -1 for inverted back face, 1 for normal situation.

-1 表示翻转了背面,1 表示正常情况。

访问器

  • get activeInHierarchy(): boolean

    返回 boolean

    Whether this node is active in the hierarchy.

    该节点在层级中是否激活。

  • get destroyed(): boolean

    返回 boolean

    Whether it has been destroyed. The object cannot be used after being destroyed.

    是否已经销毁。对象销毁后不能再使用。

  • get displayedInStage(): boolean

    返回 boolean

    Indicates whether the node is displayed in the scene.

    表示是否在显示列表中显示。

  • get is3D(): boolean

    返回 boolean

    Whether it is a 3D node, i.e., Scene3D, Sprite3D and their derived classes.

    是否是3D节点,即Scene3D、Sprite3D及其衍生类。

方法

  • 参数

    • bit: number

      The bit to get.

    返回 boolean

    The bit value, true or false.

    Get a specific bit of the node.

    获取节点的特定位。

  • 参数

    • bit: number

      The bit to set.

    • value: boolean

      The value to set, true or false.

    返回 boolean

    Whether the bit was changed.

    Set a specific bit of the node.

    设置节点的特定位。

  • 类型参数

    参数

    • node: T

      The child node to be inserted.

    • index: number

      The index at which the child node will be inserted.

    返回 T

    The inserted child node.

    Insert a child node at a specific index.

    在指定的索引位置插入子节点。

  • 参数

    • type: string

      The event type.

    • 可选data: any

      The event data. An Event object can be passed.

    返回 void

    Bubble an event up the parent chain.

    事件冒泡到父节点链。

  • 参数

    • method: Function

      The callback function.

    • args: any[] = null

      The parameters passed to the callback function.

    返回 void

    Delays the execution of a callback function until the next frame after the current execution block is finished. The callback function will only be executed once. It is generally called before the control is displayed on the screen to delay the calculation of data.

    在当前执行块完成后,延迟执行回调函数到下一帧。 回调函数只会被执行一次。一般在控件被显示在屏幕之前调用,用于延迟计算数据。

  • 参数

    • caller: any

      The execution scope of the callback function (this).

    • method: Function

      The callback function.

    返回 void

    Clears a timer.

    清除定时器。功能同Laya.timer.clear()。

  • 参数

    • node: Node

      The specified node.

    返回 boolean

    A Boolean value indicating whether the current node contains the specified node.

    Checks whether the current node contains the specified node.

    当前容器是否包含指定的节点对象。

  • 参数

    • type: string

      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.

    返回 boolean

    True if there are listeners for this event type, false otherwise.

    Dispatch an event.

    派发事件。

  • 类型参数

    参数

    • name: string

      The name of the child node to find.

    • 可选classType: new (...args: any[]) => T

      The type of the child node.

    返回 T

    The child node with the specified name.

    Recursively find child nodes, but will not search nodes inside Prefabs.

    递归查找子节点,但不会查找Prefab内部的节点。

  • 参数

    • delay: number

      The interval between executions, in frames.

    • caller: any

      The execution scope of the callback function (this).

    • method: Function

      The callback function.

    • args: any[] = null

      The parameters passed to the callback function.

    • coverBefore: boolean = true

      Whether to override the previous delayed execution. The default value is true.

    返回 void

    Repeatedly executes a callback function at a fixed interval based on frame rate.

    基于帧率,定时重复执行回调函数。功能同Laya.timer.frameLoop()。

  • 参数

    • delay: number

      The delay time, in frames.

    • caller: any

      The execution scope of the callback function (this).

    • method: Function

      The callback function.

    • args: any[] = null

      The parameters passed to the callback function.

    • coverBefore: boolean = true

      Whether to override the previous delayed execution. The default value is true.

    返回 void

    Executes a callback function once after a specified delay based on frame rate.

    基于帧率,在指定延迟时间后执行一次回调函数。功能同Laya.timer.frameOnce()。

  • 类型参数

    参数

    • name: string

      The name of the child node.

    • 可选classType: new (...args: any[]) => T

    返回 T

    The child node with the specified name, or null if not found.

    Get a child node by its name.

    根据子节点的名字获取子节点对象。

  • 类型参数

    参数

    • index: number

      The index of the child node.

    • 可选classType: new (...args: any[]) => T

    返回 T

    The child node at the specified index, or null if the index is out of range.

    Get a child node by its index.

    根据子节点的索引位置获取子节点对象。

  • 类型参数

    参数

    • name: string
    • 可选classType: new (...args: any[]) => T

    返回 T

    Same as getChild,recommended to use getChild

    同getChild,推荐使用getChild

  • 类型参数

    参数

    • path: String

      The path of the child node.

    • 可选classType: new (...args: any[]) => T

      The type of the child node.

    返回 T

    The child node with the specified path.

    Get the first child node with the specified path. e.g. getChildByPath("A.B.C") is similar to getChild("A") followed by getChild("B") followed by getChild("C").

    获取具有指定路径的第一个子节点。例如 getChildByPath("A.B.C") 类似于 getChild("A") 后跟 getChild("B") 后跟 getChild("C")。

  • 类型参数

    参数

    • componentType: new () => T

      The type of the component.

    返回 T

    The component instance.

    Get a component instance by type. Returns null if not found.

    根据类型获取组件实例。如果没有找到则返回null。

  • 参数

    • flag: number

      The hide flag to check.

    返回 boolean

    Whether the node has the specified hide flag.

    Check whether the node has a specific hide flag.

    检查节点是否具有特定的隐藏标志。

  • 参数

    • type: string

      The type of event.

    返回 boolean

    True if a listener of the specified type is registered, false otherwise.

    Check if the EventDispatcher object has any listeners registered for a specific type of event.

    检查 EventDispatcher 对象是否为特定事件类型注册了任何侦听器。

  • 参数

    • node: Node

      The node to check.

    返回 boolean

    True if this node is an ancestor of the given node, false otherwise.

    Check if this node is an ancestor of the given node.

    检查本节点是否是某个节点的上层节点。

  • 参数

    • type: string

      The type of event.

    • listener: Function

      The listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Remove a listener from the EventDispatcher object.

    从 EventDispatcher 对象中删除侦听器。

  • 参数

    • type: string

      The type of event.

    • caller: any

      The execution scope of the event listener function.

    • 可选listener: Function

      The listener function.

    • 可选args: any[]

    返回 EventDispatcher

    This EventDispatcher object.

    Remove a listener from the EventDispatcher object.

    从 EventDispatcher 对象中删除侦听器。

  • 参数

    • 可选type: string

      (Optional) The type of event. If the value is null, all types of listeners on this object are removed.

    返回 EventDispatcher

    This EventDispatcher object.

    Remove all listeners of the specified event type from the EventDispatcher object.

    从 EventDispatcher 对象中删除指定事件类型的所有侦听器。

  • 参数

    • type: string

      The type of event.

    • listener: Function

      The listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知。

  • 参数

    • type: string

      The type of event.

    • caller: any

      The execution scope of the event listener function.

    • listener: Function

      The listener function.

    • 可选args: any[]

      (Optional) The callback parameters of the event listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知。

  • 返回 void

    The callback function that is executed when the component is activated, at which point all nodes and components have been created. This is a virtual method that needs to be overridden in the subclass.

    组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次。 此方法为虚方法,使用时重写覆盖即可。

  • 参数

    • type: string

      The type of event.

    • listener: Function

      The listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications. This event listener responds once and is automatically removed after the first call.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知,此侦听事件响应一次后自动移除。

  • 参数

    • type: string

      The type of event.

    • caller: any

      The execution scope of the event listener function.

    • listener: Function

      The listener function.

    • 可选args: any[]

      (Optional) The callback parameters of the event listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications. This event listener responds once and is automatically removed after the first call.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知,此侦听事件响应一次后自动移除。

  • 返回 void

    The callback function when the node is destroyed. This is a virtual method. You can override it for custom logic when the node is about to be destroyed.

    节点被销毁时执行的回调函数。此方法为虚方法,使用时重写覆盖即可。

  • 返回 void

    The callback function that is executed when the component is disabled, such as when a node is removed from the stage. This is a virtual method that needs to be overridden in the subclass.

    组件被禁用时执行,比如从节点从舞台移除后。 此方法为虚方法,使用时重写覆盖即可。

  • 返回 void

    The callback function that is executed when the component is enabled, such as when a node is added to the stage. This is a virtual method that needs to be overridden in the subclass.

    组件被启用后执行,比如节点被添加到舞台后。 此方法为虚方法,使用时重写覆盖即可。

  • 参数

    • index: number

      The index of the child node.

    • 可选destroy: boolean

    返回 Node

    The removed node.

    Remove a child node by its index.

    根据子节点索引位置,删除对应的子节点对象。

  • 参数

    • name: string

      The name of the child node.

    • 可选destroy: boolean

    返回 Node

    The removed node.

    Remove a child node by its name.

    根据子节点名字删除对应的子节点对象,如果找不到不会抛出异常。

  • 参数

    • 可选beginIndex: number

      The begin index.

    • 可选endIndex: number

      The end index.

    • 可选destroy: boolean

    返回 void

    The node itself.

    Remove all children from this node.

    删除指定索引区间的所有子对象。

  • 参数

    • method: Function

      The name of the callback function to be executed, such as functionName.

    返回 void

    If there are callback functions delayed by callLater, they will be executed immediately.

    如果有通过 callLater 延迟执行的回调函数,将立即执行它们。

  • 类型参数

    参数

    • node: T

      The child node to set the index for.

    • index: number

      The new index of the child node.

    返回 T

    The child node itself.

    Set the index of a child node.

    设置子节点的索引位置。

  • 参数

    • delay: number

      The interval between executions, in milliseconds.

    • caller: any

      The execution scope of the callback function (this).

    • method: Function

      The callback function.

    • args: any[] = null

      The parameters passed to the callback function.

    • coverBefore: boolean = true

      Whether to override the previous delayed execution. The default value is true.

    • jumpFrame: boolean = false

      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.

    返回 void

    Repeatedly execute a callback function at a fixed interval. This is a wrapper of the loop method in the timer property of the node.

    定时重复执行某函数。这是对节点 timer 属性的 loop 方法的封装。

  • 参数

    • delay: number

      The delay time, in milliseconds.

    • caller: any

      The execution scope of the callback function (this).

    • method: Function

      The callback function.

    • args: any[] = null

      The parameters passed to the callback function.

    • coverBefore: boolean = true

      Whether to override the previous delayed execution. The default value is true.

    返回 void

    Executes a callback function once after a specified delay.

    在指定延迟时间后执行一次回调函数。功能同Laya.timer.once()。

  • 参数

    • original: Sprite3D

      The original sprite.

    • parent: Node = null

      The parent node. Default is null.

    • worldPositionStays: boolean = true

      Whether to maintain its own world transformation. Default is true.

    • position: Vector3 = null

      World position, effective when worldPositionStays is false. Default is null.

    • rotation: Quaternion = null

      World rotation, effective when worldPositionStays is false. Default is null.

    返回 Sprite3D

    The cloned instance.

    Create a clone instance of the sprite.

    创建精灵的克隆实例。