• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 339 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0040 秒)

1. 缓动画Bug,给了回调函数之后是直接过时间执行回调函数,但是之前的缓动画不会执行 [ 100%]

缓动画Bug,给了回调函数之后是直接过时间执行回调函数,但是之前的缓动画不会执行 this.bir.x = 0; this.bir.y = 0; Laya.Tween.to(this.bir, { x: 200, y: 200 }, 2000, () => { }, Laya.Handler.create(this, this.change));     这里面会直接过两秒执行this....

来源: Laya_社区 发布时间: 20170809

2. 脚本组件继承于 Laya.Script。 其中的_update方法,多长时间会调用一次? 可以设置调用时间吗? [ 99%]

...: boolean; protected _owner: laya.d3.core.Sprite3D; /**是否已执行start函数。*/ started: boolean; /** * 获取唯一标识ID。 * @return 唯一标识ID。 */ id: number; /** * 获取所属Sprite3D节点。 * @return 所属Sprite3D节点。 */ owner: laya.d3.core.Sprite3D; /** * 获取是否...

来源: Laya_社区 发布时间: 20171109

3. laya.utils.Timer [ 97%]

...eters caller:* — 执行域(this)。  method:Function — 定时器回调函数。  args:Array (default = null) — 回调参数。 clear()method  public function clear(caller:*, method:Function):void 清理定时器。 Parameters caller:* — 执行域(this)。  method:Function — 定时器...

来源: laya_api 发布时间: 20170929

4. laya.utils.Timer [ 96%]

...eters caller:* — 执行域(this)。  method:Function — 定时器回调函数。  args:Array (default = null) — 回调参数。 clear()method  public function clear(caller:*, method:Function):void 清理定时器。 Parameters caller:* — 执行域(this)。  method:Function — 定时器...

来源: Laya2.0_api 发布时间: 20190513

5. getTimer 函数可以替代函数 [ 95%]

getTimer 函数可以替代函数 怎么测试代码运行时间?以前一用 getTimer。laya里面好像没有这个API 2018-04-28 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 w1114367261 赞同来自: 你...

来源: Laya_社区 发布时间: 20180428

6. laya.utils.Timer_API3.0 [ 94%]

... Parameters caller: any 执行域(this)。 method: Function 定时器回调函数。 Default value args: any[] = null 回调参数。 Returns void clear clear(caller: any, method: Function): void Defined in laya/utils/Timer.ts:243 清理定时器。 Parameters caller: any 执行域(this)。 method: ...

来源: Laya3.0_api 发布时间: 20231115

7. Laya.loader.create 进度回调函数执行两次!!! [ 94%]

Laya.loader.create 进度回调函数执行两次!!! Laya.loader.create("Main/SMain.ls",Laya.Handler.create(this,this.on3DComplete),Laya.Handler.create(this,this.onProgress,null,false)); Manager.prototype.onProgress = function(value) { console.log("value=="+Math.floor(value*100)+"%"); }   输出...

来源: Laya_社区 发布时间: 20180620

8. 定时器 · LayaAir3.0文档 · LAYABOX [ 94%]

...帧)。 * @param caller 执行域(this)。 * @param method 定时器回调函数。 * @param args 回调参数。 * @param coverBefore 是否覆盖之前的延迟执行,默认为 true 。 */ frameOnce(delay: number, caller: any, method: Function, args: any[] = null, coverBefore: boolean = true): v...

来源: Laya3.0_文档 发布时间: 20241014

9. 定时重复执行 [ 93%]

...们有吗? 我不要插件,要可执行的exe MOUSE_OVER注册的响应函数,如果鼠标一直在动,多久会执行一次,一帧吗?和frameLoop一样? 关闭指定定时器timer 注册函数里面 事件侦听函数执行域 的详解 怎样跨页面执行脚本命令? 问题状...

来源: Laya_社区 发布时间: 20180718

10. 2.0中Tween为什么是先执行了complete回调函数,然后在执行tween函数本身。 [ 90%]

2.0中Tween为什么是先执行了complete回调函数,然后在执行tween函数本身。 需要一个动画效果。改变物体位移,然后将它放置到新的父节点中 但是现在的效果是,先执行了complete,把物体放置到父节点中,然后才走了tween的动画效...

来源: Laya_社区 发布时间: 20190103