共计 527 个字符,预计需要花费 2 分钟才能阅读完成。
闪烁行为脚本接口
该接口派生自 IBehaviorInstance
,用于添加特定于闪烁行为。
示例
下面是一个示例代码片段,演示了闪烁(假定为具有 Flash 行为的实例)以及在闪烁完成时记录到控制台。instFlash
行为事件
// Handle "flashend" event which logs to console when
// the flash has finished
inst.behaviors.Flash.addEventListener("flashend", e =>
{
console.log("Flash finished!");
});
// Start flashing with the Flash behavior for 2 seconds
inst.behaviors.Flash.flash(0.1, 0.1, 2);
有关标准行为实例事件对象属性,请参阅行为实例事件。
“闪尾”
闪光结束时触发。
闪烁行为
-
flash(onTime, offTime, duration)
对于给定的对象开始闪烁,对象显示为 可见,不可见,所有时间均以秒为单位。
duration
,onTime
,offTime
-
(停止)
停止任何当前处于活动状态的闪光效果,将对象恢复为可见状态。
-
(闪烁)
指示对象当前是否闪烁的只读布尔值。
正文完