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

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

21. 全局动画不能加载 [ 92%]

...bel(start):start; this.loop=loop; if (this._frames && this._frames.length > 1 && this.interval > 0){ this.timerLoop(this.interval,this,this._frameLoop,null,true); } } __proto._setFramesFromCache=function(name){ if (name && Animation.framesMap[name]){ this._frames=Animat...

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

22. Laya 绑定显示内容到骨骼动画 [ 91%]

...oint=Laya.Point.create(); for(let index:number=0;index<this.__bindList.length;index++){ source=this.__bindList[index]; SkeletonUtils.getBoneLocalPoint(this,source.boneName,position); source.x=source.offestX+position.x; source.y=source.offestX+position.y; } }  destroy(destroyChild?:boolean):void...

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

23. 3D寻路 · LayaAir3.0文档 · LAYABOX [ 91%]

...的真实坐标 */ private getRealPosition(start, path): any { this.resPathLength = path.length; var minX = this.terrainSprite.minX; var minZ = this.terrainSprite.minZ; var cellX = this.terrainSprite.width / this.aStarMap.width; var cellZ = this.terrainSprite.depth / this.aStarMap.height; var halfCe...

来源: Laya3.0_文档 发布时间: 20230303

24. 源码List的一次代码错误 [ 91%]

...; box = cacheBox; } else { [b] var arr = []; [/b] for (var i = this._cells.length - 1; i > -1; i--) { var item = this._cells[i]; item.removeSelf(); arr.push(item); } this._cells.length = 0; } for (var k = startY; k < numY; k++) { for (var l = 0; l < numX; l++) { [b][i] if (arr && ar...

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

25. getCharPoint的bug [ 91%]

...re.js的getCharPoint这个函数里,有这样一句话:len += lines[i].length;   请将其改成:len += lines[i].length + 1;   显然开发者没在多行的情况下测试这个函数,换行这种事肯定是末尾有个换行符才会换的嘛!   上面的length没考虑换行符,...

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

26. Laya api 中可能的bug [官方来看] [ 90%]

...n 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); if (this._parent){ value && t...

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

27. [0]Timer的偶发性Bug [ 90%]

...我的timer   clearAll(target: any = null) { if (!target) { this.timers.length = 0; return; } var length = this.timers.length; for (var i = 0; i < length; i++) { var t: TimerLite = this.timers[i]; if (t.target == target) { t.destory(); } } } 2023-11-15 0 0 分享 微博 QZONE 微信 为什么被...

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

28. LayaFlash:求ByteArray.jas ->readMultiByte对gb2312的实现翻译 [ 90%]

...然后,自己写算法查找和装换吧. public function readMultiByte (length:int, charSet:String):String          {             if(charSet=="UNICODE" || charSet=="unicode")             {                 return readUnicode(length);             }   ...

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

29. js继承模式 [ 90%]

...852; } Class.prototype.loop = function() { for (var i = 0; i < this.img.length; i++) { this.img[i].y += 1; if (this.img[i].y >= 852) { this.img[i].y = -852; } } }; return Class; }()); new function() { var className = 'BackGround'; window[className] = (function() { Laya.class(Class, className, ...

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

30. 十几秒以后动画渲染时间变长,帧率变慢,是怎么回事? [ 90%]

...间距 */ private _path_space_y: number; /** 路径长度 */ private _path_length: number; // toset: /** 路径的长度范围 */ private _path_min: number = 100; private _path_max: number = 200; /** 路径角度 */ private _path_angle: number; /** 路径弧度 */ private _path_radians: number;  /*...

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