Fade out effect
淡出效果
Constructor method of Component.
组件的构造方法
Extra data of the node.
组件的额外数据。IDE内部使用。
Unique identifier for the component.
组件的唯一标识。
Whether the component is a singleton, meaning only one instance of this type of script can be added to the same node.
是否为单例,即同一个节点只能添加此类型的脚本一次。
Whether to automatically remove the node when the effect is complete.
效果结束后,是否自动移除节点。
The delay time of the animation in milliseconds.
动画延迟时间,单位为毫秒。
The duration of the animation in milliseconds.
动画持续时间,单位为毫秒。
The type of easing. If empty, it defaults to uniform speed playback.
缓动类型,如果为空,则默认为匀速播放。
The event that triggers the effect. If empty, it triggers upon creation.
触发事件,如果为空,则创建时触发。
Gets the owner Node to which the component belongs.
获取组件所属的 Node 节点。
The repeat count of the animation. Default is to play once.
动画的重复次数。默认为播放一次。
Whether the script can run in the IDE environment.
是否可以在 IDE 环境中运行。
The path of the script file.
脚本文件的路径。
The target object of the effect. If empty, it is the node where the script is located.
效用作用的目标对象,如果为空,则是脚本所在的节点本身。
whether the component has been awakened.
组件是否已经被唤醒。
whether the component has been destroyed.
组件是否已经被销毁。
whether the component is enabled.
是否启用组件。
The hide flags that determine the hiding behavior of the component.
确定组件隐藏行为的标志。
The unique identifier for the component.
Destroy components
销毁组件
The hide flag to check for.
Checks if the component has a specific hide flag set.
检查组件是否设置了特定的隐藏标志。
Called after the component is added to a node. Unlike Awake, onAdded is called even if the node is not active.
组件被添加到节点后调用,与 onAwake 不同的是,即使节点未激活也会调用 onAdded。
Executed after the component is activated. At this point, all nodes and components have been created. This method is executed only once.
组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次。
Executed when the node is destroyed manually.
手动调用节点销毁时执行。
Executed when the component is disabled, such as when the node is removed from the stage.
组件被禁用时执行,比如从节点从舞台移除后。
Executed after the component is enabled, such as when the node is added to the stage.
组件被启用后执行,比如节点被添加到舞台后。
可选
Executed every frame during the late update phase, after the update phase.
每帧更新时执行,在 late update 阶段,update 阶段之后。
Executed after rendering.
渲染之后执行。
Executed before rendering.
渲染之前执行。
Reset the effect properties to their default values.
重置效果属性到默认值。
Executed once, before the first update.
在第一次执行 update 之前执行,只会执行一次。
Executed every frame during the update phase. Avoid writing complex loop logic or using the getComponent method here.
每帧更新时执行,在 update 阶段。尽量不要在这里写大循环逻辑或使用 getComponent 方法。
En
Fade out effect
Zh
淡出效果