大约有 1,451 项符合查询结果, 库内数据总量为 30,782 项。 (搜索耗时: 0.0048 秒)
...同来自: 临时解决了下 // 修整LayaMaxUI导出问题 gulp.task("modifyUI", function () { let filePath = __dirname + "/../src/ui/LayaMaxUI.ts"; if (!fs.existsSync(filePath)) { return; } let fileContent = fs.readFileSync(filePath, "utf8"); ...
来源: Laya_社区 发布时间: 20190123
pivot 设置后 影响 元素大小??????????????? if(idx==2){ page[1].pivot(0,0); page[1].rotation=ps[1]+180; page[1].pos(_core.p1.x,_core.p1.y); ...
来源: Laya_社区 发布时间: 20161214
...人 dz5566 • 2019-03-06 23:14 laya.ui.js改成这样即可,去掉判断if (this._selectedIndex !=value) __getset(0,__proto,'selectedIndex',function(){ return this._selectedIndex; },function(value){ //if (this._selectedIndex !=value){ this._selectedIndex=value; this.changeSelectStatus(); this.eve...
来源: Laya_社区 发布时间: 20190305
...= value; } Character.prototype.update = function() { this.x += this.speed; if (this.x >= Laya.stage.width + Character.WIDTH) this.x = -Character.WIDTH; } this.createAnimation(images); this.createBloodBar(); this.createNameLabel(); } Laya.class(Character, "Character", Sprite); // Main var amount = 50...
来源: Laya_示例 发布时间: 20241120
... */ __proto.readUTFBytes=function(len){ (len===void 0)&& (len=-1); if (len==0)return ""; var lastBytes=this.bytesAvailable; if (len > lastBytes)throw "readUTFBytes error - Out of bounds"; len=len > 0 ? len :lastBytes; return this.rUTF(len); } 2018-08-22 添加评论 免费帖 --> 分...
来源: Laya_社区 发布时间: 20180822
...不同的平台加载不同的资源,来使用压缩纹理 ```typescript if (Browser.onAndroid) URL.basePath = "res/threeDimen/scene/LayaScene_TextureGPUCompression/Android/"; else if (Laya.Browser.onIOS) URL.basePath = "res/threeDimen/scene/LayaScene_TextureGPUCompression/IOS/"; else URL.basePath...
来源: Laya2.0_文档 发布时间: 20210714
...来自: 吓得我赶紧看看我的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 分享 微...
来源: Laya_社区 发布时间: 20231025
...sform()); value.copyTo(m); _setTransform(m); //设置transform时重置x,y if (value) { _x = value.tx; _y = value.ty; value.tx = value.ty = 0; } if (value) _renderType |= SpriteConst.TRANSFORM; else { _renderType &= ~SpriteConst.TRANSFORM; } _setRenderType(_renderType); parentRepaint(); } 2018-1...
来源: Laya_社区 发布时间: 20181125
... let phoneH = 0; if((image.width*hPercentage*pixelRatio) > browserWidth) { phoneW = Math.round(browserWidth / pixelRatio); phoneH = Math.round(image.he...
来源: Laya_社区 发布时间: 20200604
...发报错,,底层代码: loop() { if (this.assetManager.isLoadingComplete()) { //这里应该先判断加载是否成功,否则失败了也会满足条件 this.parseSpineAni();//在处理失败资源会报错 ...
来源: Laya_社区 发布时间: 20220317