Fade in effect

淡入效果

层级 (查看层级一览)

构造函数

属性

Extra data of the node.

组件的额外数据。IDE内部使用。

_id: number

Unique identifier for the component.

组件的唯一标识。

_singleton: boolean

Whether the component is a singleton, meaning only one instance of this type of script can be added to the same node.

是否为单例,即同一个节点只能添加此类型的脚本一次。

autoDestroyAtComplete: boolean = true

Whether to automatically remove the node when the effect is complete.

效果结束后,是否自动移除节点。

delay: number = 0

The delay time of the animation in milliseconds.

动画延迟时间,单位为毫秒。

duration: number = 1000

The duration of the animation in milliseconds.

动画持续时间,单位为毫秒。

ease: string

The type of easing. If empty, it defaults to uniform speed playback.

缓动类型,如果为空,则默认为匀速播放。

eventName: string

The event that triggers the effect. If empty, it triggers upon creation.

触发事件,如果为空,则创建时触发。

owner: Sprite

Gets the owner Node to which the component belongs.

获取组件所属的 Node 节点。

repeat: number = 0

The repeat count of the animation. Default is to play once.

动画的重复次数。默认为播放一次。

runInEditor: boolean

Whether the script can run in the IDE environment.

是否可以在 IDE 环境中运行。

scriptPath: string

The path of the script file.

脚本文件的路径。

target: Sprite

The target object of the effect. If empty, it is the node where the script is located.

效用作用的目标对象,如果为空,则是脚本所在的节点本身。

访问器

方法

  • 返回 void

    Called after the component is added to a node. Unlike Awake, onAdded is called even if the node is not active.

    组件被添加到节点后调用,与 onAwake 不同的是,即使节点未激活也会调用 onAdded。

  • 返回 void

    Executed after the component is activated. At this point, all nodes and components have been created. This method is executed only once.

    组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次。

  • 返回 void

    Executed every frame during the update phase. Avoid writing complex loop logic or using the getComponent method here.

    每帧更新时执行,在 update 阶段。尽量不要在这里写大循环逻辑或使用 getComponent 方法。