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

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

151. 发布原生 ios/android 的渲染问 题 [ 85%]

....getTexture(); this.material.setTexture(tex); this.plane.active = true; // if(oldTex) // { // MeshPool.destoryRes(oldTex["keyUrl"],oldTex); // }  }我所注视的就是上面在laya.3d.js 中出现的那个alert 的提示  我知道为什么 在native 会受到限制 但是在 web 上 和wx上都...

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

152. _calculateCacheRect函数有bug [ 85%]

...改;             //用一个临时变量处理             if(!this.tempRect){                 this.tempRect = Rectangle.create();             }             if (this.cacheRect)                 this.cacheRect.recover();             this.cacheRect = null...

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

153. 3D 鼠标检测 错乱 [ 85%]

...=0,j=0,m=0; n=this._eventList.length; var cameras=this._scene._cameraPool; if (n > 0){ for (i=0;i < n;i++){ var e=this._eventList; switch (e.type){ case "mousedown": this._mouseTouchDown(); break ; case "mouseup": this._mouseTouchUp(); break ; case "mousemove":; var mousePoint=Input3D._tempPoi...

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

154. 骨骼动画-换装 [ 84%]

....loop(1000, this, changeSkin); } function changeSkin() { mCurrSkinIndex++; if (mCurrSkinIndex >= mSkinList.length) { mCurrSkinIndex = 0; } mArmature.showSkinByName(mSkinList[mCurrSkinIndex]); } function completeHandler() { play(); } function play() { mCurrIndex++; if (mCurrIndex >= mArmature.getAnim...

来源: Laya_示例 发布时间: 20241119

155. 2.3.0发布微信小游戏,自动缓存:查找不到资源问题的Bug [ 84%]

...:   修改如下: static _transformImgUrl(url, type, thisLoader) {    if (MiniAdpter.isZiYu) {    thisLoader._loadImage(url, false);    return;    }    if (MiniFileMgr.isLocalNativeFile(url)) {    thisLoader._loadImage(url, false);    return;    }    if (!MiniFileMgr.isLocalNati...

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

156. laya接入vivo平台加载资源卡住66% [ 84%]

...请: 与内容相关的链接 提交 2 个回复 *%〈~〉 赞同来自: if (preLoadedMap[url]) { onLoaded(preLoadedMap[url]); } else { ////////////////////////////////////////////////////// //jiaz加载kasi加载卡死wenti if(Browser.onVVMiniGame) {// _http = new HttpRequest(); _http.on(Event.PR...

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

157. 微信小游戏利用开放域好友关系链做排行榜 [ 84%]

...关键字bitmap._addReference,在laya.core.js中找到,如下代码: if (bitmap){      bitmap._addReference(); }将其改成: if (bitmap && bitmap._addReference){     bitmap._addReference(); } 其实就是在if中加了个判断 3.修改主域的game.js文件,在里面增...

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

158. Spine动画资源加载时不能同时使用"版本管理"和"URL.basePath" [ 84%]

...它内部包含URL.basePath的部分 __proto.onComplete=function(content){ if (this._isDestroyed){ this.destroy(); return; }; var tSkBuffer=Loader.getRes(this._skBufferUrl); if (!tSkBuffer){ this.event(/*laya.events.Event.ERROR*/"error","load failed:"+this._skBufferUrl); return; } //MODIFIED:使用f...

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

159. Laya api 中可能的bug [官方来看] [ 84%]

...set(0,__proto,'zOrder',function(){ return this._zOrder; },function(value){ if (this._zOrder !=value){ if(this.name.length > 0){ console.debug("zOrder:"+this.name+" order:"+value); } this._zOrder=value; this.conchModel && this.conchModel.setZOrder && this.conchModel.setZOrder(value...

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

160. 关于intersects碰撞的疑问 [ 84%]

...,里面的bounds即为图片最大矩形框,直接获取其属性: if(imageA.bounds.intersects(imageB.bounds)) {  trace("撞到了"); } 在layaAir中也找到了intersects方法,不过用法好像不太一样,public function intersects(rect:Rectangle):Boolean   问题一:是不是也...

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