大约有 248 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0038 秒)
...) at start (laya.js:77) at onAssetLoaded (laya.js:47) at Handler.__proto.runWith (laya.core.js:681) at ResInfo.loadComplete (laya.core.js:12125) at EventHandler.__proto.runWith (laya.core.js:682) 2017-07-19 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找...
来源: Laya_社区 发布时间: 20170719
...行域错了,this变成window了。简单的解决办法是回调改成Handler,你这个也可以看下你添加回调方法得地方,改下也可以。,方法后面增加.bind(this) 2017-01-18 0 0 分享 微博 QZONE 微信 xuhu1518 赞同来自: RequestConfig.instance.getRequestConfig(Stri...
来源: Laya_社区 发布时间: 20170118
...e.log('Gzdaze='); console.log(Gzdaze); Laya.loader.load(Gzdaze.dialogList, Handler.create(this, this.startLoaded)); 代码是这样的 报错 Access to Image at 'http://caifu-1251177394.file.myqcloud.com/beta/book/bookLaya/img/progressBar$bar.png' from origin 'http://bookportal.com' has been blocked...
来源: Laya_社区 发布时间: 20180208
...omplete (file:///E:/ycyheroH5/ycyZYWZW/Client/bin/js/bundle.js:68463:8) at Handler.__proto.run (file:///E:/ycyheroH5/ycyZYWZW/Client/bin/js/bundle.js:36051:26) at onComplete (file:///E:/ycyheroH5/ycyZYWZW/Client/bin/js/bundle.js:51721:15) at Handler.__proto.runWith (file:///E:/ycyheroH5/ycyZYWZW/Cli...
来源: Laya_社区 发布时间: 20181014
...自: 服务器需要按照http协议进行解码,WebSocketServerProtocolHandler处理数据 我这边用的netty4.x 下面是管道处理流程 //HttpServerCodec: 针对http协议进行编解码 pipeline.addLast("httpServerCodec", new HttpServerCodec()); //ChunkedWriteHandler分块写处理,文...
来源: Laya_社区 发布时间: 20170209
...WebGL); const path = "./res/apes/monkey2.png"; Laya.loader.load(path, Laya.Handler.create(this, function() { let tex = Laya.loader.getRes(path); let sp = new Laya.Sprite(); Laya.stage.addChild(sp); sp.graphics.drawTriangles( tex, 100, 0, new Float32Array([0,0,1,0,1,1,0,1]), new Float32Array([0,0,1,0...
来源: Laya_社区 发布时间: 20190829
...把 Laya.Tween.to(letterText, { y : 300 }, 1000, Laya.Ease.bounceIn, Laya.Handler.create(this,this.changeColor,[letterText]), i * 100); 2017-11-22 0 0 分享 微博 QZONE 微信 liner1457387450 赞同来自: 恩恩,你写的这句是基本的用法,我想用tween API里complete()立即完成...
来源: Laya_社区 发布时间: 20171122
...r = "#ffcccc"; //加载资源 Laya.loader.load("res/atlas/comp.atlas",Laya.Handler.create(this,onLoaded),null,Laya.Loader.ATLAS) })(); function onLoaded(){ //实例化 var tempBG=new background(); Laya.stage.addChild(tempBG); } })();在background.js里是这样写的 var background = (function (_sup...
来源: Laya_社区 发布时间: 20180129
有没有SoundChannel的示例? SoundManager.playSound(_url, _loop, new Handler(this, _fn)); var channel:SoundChannel = new SoundChannel(); SoundManager.addChannel(channel); _btn.on(Event.CLICK, this, soundClick); function soundClick(evt:Event){ alert("channel.isStoped:"+channel.isStoped); if (ch...
来源: Laya_社区 发布时间: 20170116
... Laya.loader.load([{ url: zipUrl, type: Laya.Loader.BUFFER }], null, Laya.Handler.create(this, this.onLoadCfg, null, false)).then( (value) => { JSZip.loadAsync(value).then( (zipData: JSZip) => { ...
来源: Laya_社区 发布时间: 20230208