大约有 445 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0041 秒)
...imer callLater(caller:*, method:Function, args:Array = null):void 延迟执行。 Timer clear(caller:*, method:Function):void 清理定时器。 Timer clearAll(caller:*):void 清理对象身上的所有定时器。 Timer frameLoop(delay:int, caller:*, method:Function, args:Array = null, ...
来源: Laya2.0_api 发布时间: 20190513
... 打开UI Laya.Scene.open(xxx.scene) 这是我打开xxx.scene 代码执行顺序是 构造器函数-onAwake-onEnable 然后我关闭 Laya.Scene.close(xxx.scene) 再次打开它Laya.Scene.open(xxx.scene) 代码执行顺序仍然是 构造器函数-onAwake-onEnable 也就是说 每次op...
来源: Laya_社区 发布时间: 20190104
...t extends Laya.Script { constructor() { super(); } /** * 组件被激活后执行,此时所有节点和组件均已创建完毕,次方法只执行一次 */ onAwake(): void { } /** * 第一次执行update之前执行,只会执行一次 */ onStart(): void { } onUpdate(): void { } onEn...
来源: Laya_社区 发布时间: 20181013
...public img: Laya.Image; constructor() { super(); } /** * 组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 */ onAwake(): void { this.img.skin = "resources/layaAir.png";//设置皮肤 this.img.useSourceSize = true;//设置图片大小为源大小 this...
来源: Laya3.0_文档 发布时间: 20241014
...:Function, args:Array = null, coverBefore:Boolean = true):void 定时重复执行某函数(基于帧率)。功能同Laya.timer.frameLoop()。 Node frameOnce(delay:int, caller:*, method:Function, args:Array = null, coverBefore:Boolean = true):void 定时执行一次某函数(基于帧率)。功能...
来源: Laya2.0_api 发布时间: 20190513
...某些骨骼动画无法播放,U3D和1.7.*都没问题 为什么ani动画执行的不是按中心点执行的 H5动画和节奏的一个加速! 一个时间轴动画里创建的多个动画,怎么分别调用?如图 【BUG备忘录】关于Tween动画无法正常作用问题-解决办法 app...
来源: Laya_社区 发布时间: 20170515
....Sprite();绘制图形以后,怎么删除释放资源? 编辑了图片 执行代码说加载不出来资源 这个是怎么回事? Animation 的createFrames 使用已经加载的图集缓存动画失败 请问下loader如何强制加载一个文件,避免浏览器的缓存 我用list.array=A...
来源: Laya_社区 发布时间: 20190713
...txtarea: Laya.TextArea; constructor() { super(); } /** * 组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 */ onAwake(): void { this.txtarea.pos(Laya.stage.width >> 1, Laya.stage.height >> 1); //位置 this.txtarea.size(500, 200); //大...
来源: Laya3.0_文档 发布时间: 20241014
...y 粒子特效 laya插件有问题? dialog 自定义关闭效果,效果执行完,弹窗无法关闭 问题状态 最新活动: 2021-04-07 20:28 浏览: 4869 关注: 3 人
来源: Laya_社区 发布时间: 20190925
...wake(): void Defined in laya/components/Component.ts:275 组件被激活后执行,此时所有节点和组件均已创建完毕,次方法只执行一次 Returns void onDestroy onDestroy(): void Defined in laya/components/Component.ts:318 手动调用节点销毁时执行 Returns void onDisable o...
来源: Laya3.0_api 发布时间: 20231115