大约有 3,269 项符合查询结果, 库内数据总量为 31,625 项。 (搜索耗时: 0.0071 秒)
...urces\app\out\vs\layaEditor\h5\codemain.js:372:18) at Server.<anonymous> (E:\laya\ide\LayaAirIDE_1.7.15\resources\app\out\vs\layaEditor\h5\codemain.js:343:17) at Object.onceWrapper (events.js:290:19) at emitNone (events.js:86:13) at Server.emit (events.js:185:7) at emitCloseNT (net.js:1544:8) ...
来源: Laya_社区 发布时间: 20180319
...不上socket 真机调试报错:LayaPlayer不支持的标签</SCRIPT> Laya 安卓端 在服务端运行指令layadcc ./ 后进不去,提示 assetId is old 和 init dcc fail。然后过五六个小时后才不会报这个错。。才能进去 构建iOS工程后,真机上运行显示“网...
来源: Laya_社区 发布时间: 20180622
... this.list_rule.totalPage; let index = Math.floor(value / page) if (index > 5) index = 5; this.setCurPage(index) } public onMouse(e: Laya.Event, index: number): void { if (e.type == Laya.Event.MOUSE_DOWN) { this.m_downValue = this.list_rule.scrollBar.value; } else if (e.type == Laya.Event.MOUSE_U...
来源: Laya_社区 发布时间: 20180724
...te 不会反馈失败状态跟描述不符合 var resource:Array<string> = ["scene/Conventional/scene2.ls"] Laya.loader.create(resource, Laya.Handler.create(this, (success:boolean) => { console.log("3d加载完毕:" + success); }),Laya.Handler.create(this, (progress: number) => { })); ...
来源: Laya_社区 发布时间: 20190626
...re播放视频纹理会出现卡顿情况~如何解决? let fun = () => { let dt = new Date() console.log("=============>", (dt.getTime() - this.IndexFrame)); this.lbTips.text = this.lbTips.text + " " + (dt.getTime() - this.IndexFrame);...
来源: Laya_社区 发布时间: 20230807
请问使用HTMLDivElement,<span>标签如何支持style = "visibility:hidden"? (function() { var Stage = Laya.Stage; var HTMLDivElement = Laya.HTMLDivElement; var HTMLIframeElement = Laya.HTMLIframeElement; var Browser = Laya.Brow...
来源: Laya_社区 发布时间: 20170315
...档类 但是入口还是默认那个? 我就改了 <compileTargets> <compile path="src\LayaSample.as" /> </compileTargets> 2017-08-30 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复...
来源: Laya_社区 发布时间: 20170830
... = 200; this.dragRegion = new Rectangle(Laya.stage.width - dragWidthLimit >> 1, Laya.stage.height - dragHeightLimit >> 1, dragWidthLimit, dragHeightLimit); //画出拖动限制区域 Laya.stage.graphics.drawRect( this.dragRegion.x, this.dragRegion.y, this.dragRegion.width, this.dragRegio...
来源: Laya_社区 发布时间: 20171106
...= 0.99; this.vy += 0.25; console.log("222222"); if (this.ball.y + this.vy >= this.stageHeight ||this.ball.y + this.vy <= 0) { this.vy = -this.vy; } if (this.ball.x + this.vx >= this.stageWidth ||this.ball.x + this.vx <= 0) { this.vx = -this.vx; } 2017-11-07 0 1 分享 微博 QZONE 微...
来源: Laya_社区 发布时间: 20171107
...'-' : ''; // 简单的单位转换 if (absValue >= 1e9) { return sign + (absValue / 1e9).toFixed(2).replace(/\.00$/, '') + 'B'; } else if (absValue >= 1e6) { return sign + (absValue / 1e6).toFixed(2).replace(/\.00$/, '')...
来源: Laya_社区 发布时间: 20251211