大约有 272 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0044 秒)
Laya3.0_api(107) Laya_社区(101) Laya2.0_api(21) laya_api(19) Laya2.0_文档(13) Laya3.0_文档(8) Laya2.0_示例(3)
...载的内容全部停止加载。LoaderManager create(url:*, complete:Handler = null, progress:Handler = null, type:String = null, constructParams:Array = null, propertyParams:Object = null, priority:int = 1, cache:Boolean = true):void 根据clas类型创建一个未初始化资源的对象,随...
来源: Laya2.0_api 发布时间: 20190513
...ation.enableHighAccuracy = true; Laya.Geolocation.getCurrentPosition( Laya.Handler.create(null, cb_onGeoPositionSuccess), Laya.Handler.create(null, cb_onGeoPositionFail)); } else { alert("您的浏览器不支持使用HTML5来获取地理位置服务"); } } // 回调函数:获取GPS坐标成功后 f...
来源: Laya_社区 发布时间: 20161102
....tw1 = Laya.Tween.to(this.load_1, { scaleX:0.01 }, 250, Laya.Ease.quadOut, Handler.create(this, this.tw1Complete1)); 只要是设置scale值最终变为0就有问题,, var style=this.getStyle(); 这个获取的style是空的,,这个问题不是必现的,,,,, 附件 : --> 2018-03-15...
来源: Laya_社区 发布时间: 20180315
...o完成回调异常! Tween.to(this.floatTxt, {y:-30}, 600, Ease.expoOut, Handler.create(this,onFloatComplete)); protected function onFloatComplete(callBack:Function):void { this.removeSelf(); } 我用这个缓动来做飘字效果,完成回调的时候,把飘字对象在场景上移除,结...
来源: Laya_社区 发布时间: 20170426
显卡驱动停止响应,且大概率蓝屏,原来是Handler惹的祸,但原因是什么 问题来自于 http://ask.layabox.com/question/3673 谷歌浏览器直接崩,其他浏览器的话,也是CPU很高,操作窗口卡顿厉害 原因是一个run once = true的Handler,如果再...
来源: Laya_社区 发布时间: 20170330
...何取得场景实例? 我看了Laya.Scene.open中的参数: complete:Handler (default = null) — 打开完成回调,返回场景实例(可选) 那么我要怎么从这个handler里边得到打开场景实例呢: 以下是我写的typescript代码: class Main { onConfigLoaded(...
来源: Laya_社区 发布时间: 20181206
...ad加载后创建prefab是没有问题的。 Laya.loader.load(url, Laya.Handler.create(this, function (obj: any) { let prefab = Laya.Pool.getItemByCreateFun('prefab_' + name, obj.create,obj); Laya.stage.addChild(prefab); ...
来源: Laya_社区 发布时间: 20200409
...型是否是鼠标事件。 EventDispatcher load(url:String, complete:Handler = null, progress:Handler = null):void[static] 加载场景及场景使用到的资源 Scene loadImage(url:String, complete:Handler = null):Sprite 加载并显示一个图片。相当于加载图片后,设置texture...
来源: Laya2.0_api 发布时间: 20190513
...关的链接 提交 1 个回复 voi1e. 赞同来自: 回调的函数:initHandler 打断点没有执行到。 2018-12-03 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 voi1e. 相关问题 请问LayaAir中如何使图片以圆形的方...
来源: Laya_社区 发布时间: 20181203
...trace("播放音乐"); SoundManager.playMusic("res/sounds/bgm.mp3", 1, new Handler(this, onComplete)); } private function onPlaySound(e:Event=null):void { trace("播放音效"); SoundManager.playSound("res/sounds/btn.mp3", 1, new Handler(this, onComplete)); }播放声音或音效的第3个参数就...
来源: Laya_社区 发布时间: 20170330