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

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

221. 微信小游戏开放数据域加载图集里面图片的路径应该怎么填写????官方能给例子吗??? [ 81%]

...据你需要自己处理,例子参数: //接收主域透传的数据 if(MiniAdpter.isZiYu && MiniAdpter.isPosMsgYu) { __JS__('wx').onMessage(function(message:Object):void{ if(message['isLoad'] == "filedata") { // trace("------------------------filedata-url:" + message.url); MiniFileMgr.z...

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

222. 骨骼释放纹理 Templet.TEMPLET_DICTIONARY[this.url] url用错了导致Templet删不掉 [ 81%]

...   tTexture=this.subTextureDic[$each_tTexture];             if(tTexture)                 tTexture.destroy();         }         var $each_tTexture;         /*for each*/for($each_tTexture in this._textureDic){             tTexture=this...

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

223. 鼠标交互-双指旋转(多点触控) [ 81%]

...t = Laya.Event; // 手机上才有 touches 属性 let touches = e.touches; if (touches && touches.length == 2) { preRadian = Math.atan2( touches[0].stageY - touches[1].stageY, touches[0].stageX - touches[1].stageX); Laya.stage.on(Event.MOUSE_MOVE, this, this.onMouseMove); } } onMouseMove(e) { let to...

来源: Laya2.0_示例 发布时间: 20241119

224. 点击拖动图片,当鼠标移出再移回舞台中时如何保持点击状态 [ 81%]

...ouseX; sp.y=Laya.stage.mouseY; //可写可不写,限制sp的移动区域 if(sp.x>=400) { sp.x=400; } if(sp.x<=100) { sp.x==100; } if(sp.y>=450) { sp.y=450; } if(sp.y<=300) { sp.y=300; } } } } 2017-01-06 0 2 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复...

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

225. Animation的complete事件发出是时机不够准确 [ 81%]

...topwcd 赞同来自:          protected function _frameLoop():void { if (_style.visible && _style.alpha > 0.01) { this.index = _index, _index++; if (this._index >= this._count) { if (loop) this._index = 0; else { _index--; stop(); } event(Event.COMPLETE); } } }  这里刚开始...

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

226. 1.0 骨骼drawcall优化猥琐方法 [ 81%]

...ction render(context:*, x:Number, y:Number):void {             if (Render.isWebGL && mTexture) {                 context._renderKey = 0;                 context._shader2D.glTexture = null;                 SkinMeshBuffer.getInstance(...

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

227. 接听电话后,播放音效无反应,播放音乐可以 [ 81%]

...{ _isActive = true; Laya.stage.off(Event.MOUSE_DOWN, null, _stageOnFocus); if (_blurPaused) { if (_tMusic) { playMusic(_tMusic, _musicLoops, _musicCompleteHandler, _musicPosition); } _blurPaused = false; } if(WebAudioSound.ctx.state == "interrupted") { WebAudioSound.ctx.resume(); } }   2017-10-21 0...

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

228. 一个EffectAnimation只能创建一个动画效果吗 [ 81%]

... *@param uiData */ __getset(0,__proto,'effectData',null,function(uiData){ if (uiData){ var aniData=uiData["animations"]; if (aniData && aniData[0]){ var data=aniData[0]; this._setUp({},data); if (data.nodes && data.nodes[0]){ this._aniKeys=data.nodes[0].keys; } } } });

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

229. this.bitmap.activeResource is not a function [ 81%]

...static openZone(vx:number=0,vy:number=0,scaleX:number=1,scaleY:number=1) { if(!this._openZone) { //开放域 this._openZone = new Laya.Sprite(); } this._openZone.size(Laya.stage.width,Laya.stage.height); if(this._openZone.parent) return; console.log("打开开放域",Laya.Browser.onMiniGame) Laya.st...

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

230. 为啥我在批量removeself 会报错卡死 [ 81%]

...eX = 1; this.scaleY = 1; this.alpha = 1; this.pos(0,0); this.filters = []; if(selectImg != null) { selectImg.removeSelf(); } this.mouseEnabled = true; if(this.visible == false) { this.visible = true; } super.removeSelf(); if(itemCountTx != null) { itemCountTx.removeSelf(); } return this; }   2017-1...

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