大约有 252 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0032 秒)
Laya3.0_api(80) Laya2.0_api(74) laya_api(69) Laya_社区(23) Laya2.0_示例(3) Laya3.0_文档(1) Laya2.0_文档(1) Laya_示例(1)
...ame { export class testbox extends Laya.Box { constructor(){ super(); this.frameOnce(2,this,this.onFrame); } private onFrame():void{ console.log("111"+this.getChildByName('btnName')) } } export class testImg extends Laya.Image { constructor(){ super(); this.frameOnce(2,this,this.onFrame); } private ...
来源: Laya_社区 发布时间: 20180724
...rs delta Methods callLater clear clearAll clearCallLater destroy frameLoop frameOnce loop once pause resume runCallLater runTimer toString Constructors constructor new Timer(autoActive?: boolean): Timer Defined in laya/utils/Timer.ts:34 创建 Timer 类的一个实例。 Parameters Default value aut...
来源: Laya3.0_api 发布时间: 20231115
...erBefore:Boolean = true):void 定时重复执行(基于帧率)。 Timer frameOnce(delay:int, caller:*, method:Function, args:Array = null, coverBefore:Boolean = true):void 定时执行一次(基于帧率)。 Timer loop(delay:int, caller:*, method:Function, args:Array = null, coverBefore:Boolea...
来源: laya_api 发布时间: 20170929
...erBefore:Boolean = true):void 定时重复执行(基于帧率)。 Timer frameOnce(delay:int, caller:*, method:Function, args:Array = null, coverBefore:Boolean = true):void 定时执行一次(基于帧率)。 Timer loop(delay:int, caller:*, method:Function, args:Array = null, coverBefore:Boolea...
来源: Laya2.0_api 发布时间: 20190513
... swordman.pos(width / 2, height / 2); Laya.timer.frameOnce(100, this, unload); } private function unload() : void { swordman.destroy(); factory.destroy(); Laya.loader.cle...
来源: Laya_社区 发布时间: 20160902
...执行某函数(基于帧率)。功能同Laya.timer.frameLoop()。 Node frameOnce(delay:int, caller:*, method:Function, args:Array = null, coverBefore:Boolean = true):void 定时执行一次某函数(基于帧率)。功能同Laya.timer.frameOnce()。 Node getChildAt(index:int):Node 根据子...
来源: laya_api 发布时间: 20170929
...CK, this, onDecreaseAlpha2); //定时执行一次(基于帧率) Laya.timer.frameOnce(60, this, onComplete2); } function onComplete1() { //spBtn1的透明度减少0.5 button1.alpha -= 0.5; } function onComplete2() { //spBtn2的透明度减少0.5 button2.alpha -= 0.5; } })();module laya { import Sprit...
来源: Laya_示例 发布时间: 20241118
...his, this.onDecreaseAlpha2); //定时执行一次(基于帧率) Laya.timer.frameOnce(60, this, this.onComplete2); } onComplete1() { //spBtn1的透明度减少0.5 this.button1.alpha -= 0.5; } onComplete2() { //spBtn2的透明度减少0.5 this.button2.alpha -= 0.5; } } new Timer_DelayExcute();module l...
来源: Laya2.0_示例 发布时间: 20241118
...的效果。 1. 帧间隔 1.1 定时执行一次 (基于帧率) Laya.timer.frameOnce,定义如下: /** * 定时执行一次(基于帧率)。 * @param delay 延迟几帧(单位为帧)。 * @param caller 执行域(this)。 * @param method 定时器回调函数。 * @param args 回调参数。 * @p...
来源: Laya3.0_文档 发布时间: 20241014
...执行某函数(基于帧率)。功能同Laya.timer.frameLoop()。 Node frameOnce(delay:int, caller:*, method:Function, args:Array = null, coverBefore:Boolean = true):void 定时执行一次某函数(基于帧率)。功能同Laya.timer.frameOnce()。 Node getChildAt(index:int):Node 根据子...
来源: Laya2.0_api 发布时间: 20190513