大约有 485 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0045 秒)
...; xhr.http.timeout = 10000;//设置超时时间; xhr.once(Event.COMPLETE,this,completeHandler); xhr.once(Event.ERROR,this,errorHandler); xhr.once(Event.PROGRESS,this,processHandler); var sendData = {account:"aaa",password:"bbb"} xhr.send("http://xxx/login", JSON.stringify(sendData), "post", "jso...
来源: Laya_社区 发布时间: 20180824
...。 代码很简单,附件为复现工程,具体代码在GameUiTest.js this.imaAudioLocal.on(Laya.Event.CLICK, this, ()=>{ let resUrl = "res/audio/sound_click.wav"; Laya.SoundManager.playSound(resUrl, 1); }); this.imaAudioNet.on(Laya.Event.CLICK, this, ()=>{ let resUrl = "https://具体...
来源: Laya_社区 发布时间: 20200225
...用两次destroyJoint ;box2d.ENABLE_ASSERTS&&box2d.b2Assert(0<this.m_jointCount); 这句话会报错 2018-11-06 0 0 分享 微博 QZONE 微信 Laya_Aaron 赞同来自: 提供复现精简demo 2018-11-07 0 0 分享 微博 QZONE 微信 kura 赞同来自: 心塞 ,难道移除sprite时需...
来源: Laya_社区 发布时间: 20181106
..."], type: Laya.Loader.IMAGE }); Laya.loader.load(asset,Laya.Handler.create(this,graphicsImg)); function graphicsImg(){ var s = new laya.display.Sprite(); s.graphics.drawTexture(Laya.loader.getRes("../res/image/bg.png"),0,0); Laya.stage.addChild(s); } 新建一个工程 這样写打包之后会白...
来源: Laya_社区 发布时间: 20180808
...E_VERSION; Laya.ResourceVersion.enable("version.json", Laya.Handler.create(this, beginLoad)) function beginLoad() { //加载LOADING资源 Laya.loader.load([{ url: "res/atlas/icon.atlas" }, { url: "res/atlas/human.atlas" }], Laya.Handler.create(this, progress, null, false), null, Laya.Loader.ATLAS) }...
来源: Laya_社区 发布时间: 20180710
...选取(app) 版本:2.13.1 用这个方法检测不到3d射线碰撞 this._scene.physicsSimulation.rayCast(this.ray,this.outHitResult); 附件是引擎生成的简单的3d物理demo,简单改了几行。 补充说明: h5没问题,是app无法选中。我把native和layaair都升...
来源: Laya_社区 发布时间: 20221226
...对支持webgl2的机型做自动切换为webgl 部分机型下会出现 this._gl.createVertexArray is not a function. (In 'this._gl.createVertexArray()', 'this._gl.createVertexArray' is undefined);at requestAnimationFrame callback function 这种情况这边判断是不支持webgl2,是否又...
来源: Laya_社区 发布时间: 20200921
...示对象 *@param index */ __proto.showDisplayByIndex=function(index){ if (this._replaceDic[index]) index=this._replaceDic[index]; if (this.currSlotData && index >-1 && index < this.currSlotData.displayArr.length){ this.displayIndex=index; this.currDisplayData=this.currSlotData...
来源: Laya_社区 发布时间: 20180106
...片段 MyChat.prototype.ScrollToBottom=function(caller,callback){ var page=this.msgList.length - 8; if(page < 0)page=0; page +=1; if(caller) this.list.tweenTo(page,0,Handler.create(caller,callback)); else this.list.tweenTo(page,0); } 2019-02-26 添加评论 免费帖 --> 分享 微博 QZONE 微...
来源: Laya_社区 发布时间: 20190226
...Event.CLICK,第二次无法出发click事件 xxx.on(Laya.Event.CLICK, xxx, this.RecordA);这个放在第一次执行for循环里,第一次for循环时,click是可以进this.RecordA这个函数里,在第二次执行for循环,点击click就不能进this.RecordA这个函数里 2018-04-10 添加...
来源: Laya_社区 发布时间: 20180410