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

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

1. handler携带的参数在回调函数里面怎么获取? [ 100%]

handler携带的参数在回调函数里面怎么获取? handler携带的参数在回调函数里面怎么获取? 2018-03-30 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 qian 赞同来自: Laya.loader.load(...

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

2. Laya.Handler.create 回调参数问题 [ 96%]

Laya.Handler.create 回调参数问题 var ape ; function Init() { Laya.init(400, 800, Laya.WebGL); Laya.stage.bgColor = "#999911";  ape = new Laya.Sprite();     Laya.stage.addChild(ape); var ag = ["lsd",ape,1,"str"]; ape.loadImage("../laya/assets/res/to1.png",0,0,0,0,Laya.Handler.create(this,...

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

3. Tween 缓动过程有触发回调函数[ 91%]

...props 变化的属性列表,比如{x:100,y:20,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onComplete)}。   update这个 数值改变就会触发回调,也就是过程中的回调 2018-01-09 0 1 分享 微博 QZONE 微信 kezhiyu 赞同来自: let a = new...

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

4. Laya.loader Progress回调形同虚设 [ 90%]

...2.png", "res/3.png", "res/4.png", "res/5.png", "res/6.png", "res/7.png" ], Handler.create(this, onLoaded),Handler.create(this, onProgress)); //Laya.loader.load("res/atlas/comp.atlas", Handler.create(this, onLoaded),Handler.create(this, onProgress)); } private function onProgress(v:Number):void { tra...

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

5. laya.utils.Handler [ 90%]

...I DocumentationAll Packages | All Classes | Index | Frames No Frames HandlerProperties | Methods Packagelaya.utilsClasspublic class HandlerInheritanceHandler Object Handler 是事件处理器类。 推荐使用 Handler.create() 方法从对象池创建,减少对象创建消耗。创建的 ...

来源: laya_api 发布时间: 20170929

6. laya.utils.Handler [ 90%]

...I DocumentationAll Packages | All Classes | Index | Frames No Frames HandlerProperties | Methods Packagelaya.utilsClasspublic class HandlerInheritanceHandler Object Handler 是事件处理器类。 推荐使用 Handler.create() 方法从对象池创建,减少对象创建消耗。创建的 ...

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

7. 定时器 · LayaAir3.0文档 · LAYABOX [ 89%]

...null, coverBefore: boolean = true, jumpFrame: boolean = false): void { var handler: TimerHandler = this._create(false, true, delay, caller, method, args, coverBefore); if (handler) handler.jumpFrame = jumpFrame; } 使用示例如下: const { regClass } = Laya; import { RuntimeScriptBase } from "./...

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

8. 缓动 · LayaAir3.0文档 · LAYABOX [ 89%]

...props 变化的属性列表,比如{x:100,y:20,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onComplete)}。 * @param duration 花费的时间,单位毫秒。 * @param ease 缓动类型,默认为匀速运动。 * @param complete 结束回调函数。 * @para...

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

9. 事件管理 · LayaAir3.0文档 · LAYABOX [ 88%]

...型 Laya.Event2.2 事件派发 Laya.EventDispatcher2.3 事件处理 Laya.Handler3. 自定义的事件事件管理 1. 认识事件 1.1 什么是事件 事件Event指的是由系统事先设定的、能被对象识别和响应的动作,事件是指对象对于外部动作的响应,当对方发生...

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

10. Laya.Timer.clear 的源码可能有个问题。 [ 88%]

...在某个情况下clear掉这个执行,clear掉的只是最后入栈的Handler。情景如下:  //我想要每隔1s, 执行一次 b 函数(行为),最多执行6次 for(let i = 0; i < 6; i++){ Laya.timer.once(i * 1000, this, this.b, [i], false); } //遇到一些需求变化,我希望在2s...

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