大约有 232 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0044 秒)
...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
...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
...的真实坐标 */ 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
...; 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
...re.js的getCharPoint这个函数里,有这样一句话:len += lines[i].length; 请将其改成:len += lines[i].length + 1; 显然开发者没在多行的情况下测试这个函数,换行这种事肯定是末尾有个换行符才会换的嘛! 上面的length没考虑换行符,...
来源: Laya_社区 发布时间: 20211009
...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
...我的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
...然后,自己写算法查找和装换吧. public function readMultiByte (length:int, charSet:String):String { if(charSet=="UNICODE" || charSet=="unicode") { return readUnicode(length); } ...
来源: Laya_社区 发布时间: 20160606
...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
...间距 */ 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