大约有 1,451 项符合查询结果, 库内数据总量为 30,782 项。 (搜索耗时: 0.0050 秒)
...t = _html.getChildAt(i) as HTMLElement; if(tHTMLElement) { tTxt= tHTMLElement.innerTEXT; if(tTxt) { ...
来源: Laya_社区 发布时间: 20170307
... { var assetFontData = conch.readFileFromAsset('font/layabox.ttf', 'raw'); if (assetFontData) { if (conch.registerFont("layabox", assetFontData)) { log('字体注册成功'); } else { log('字体注册失败'); } } } 4.2 方法二 通过ttfloader下载远程字体文件,注册时传入的字体名...
来源: Laya3.0_文档 发布时间: 20241023
... btn1.on(Laya.Event.CLICK,this,()=>{ if(!_pause)return; sound.pause(); _pause = false }) btn2.on(Laya.Event.CLICK,this,()=>{ if(_pause)return ...
来源: Laya_社区 发布时间: 20200922
...ui.js文件下AutoBitmap类_setDrawGridCmd()函数,修改内容如下: if(lastOne == this._drawGridCmd){this._one = newcmd;} 改成 if(lastOne == this._drawGridCmd){ lastOne.recover(); this._one = newcmd;} 渲染命令没有回收导致。 2023-09-15 0 0 分享 微博 QZONE 微信 为什么被...
来源: Laya_社区 发布时间: 20230816
...e.on(Laya.Event.MOUSE_DOWN, this, (data: Laya.Event) => { let str = ""; if (data.touches) { for (let i = 0; i < data.touches.length; i++) { str += ` {${i} : ${data.touches[i].pos.toString()}}`; } } console.log("drag mouse down", str); }); Laya.stage.on(Laya.Event.MOUSE_UP, this, (data: Laya.Ev...
来源: Laya_社区 发布时间: 20230823
...){ Laya.timer.loop(100,this,this.onLoaded); } __proto.onLoaded=function(){ if(this.isOpen){ return; } this.isOpen=true; var testView=new TestView(); Laya.stage.addChild(testView); Laya.timer.once(200,this,this.removeUi,[testView]); } __proto.removeUi=function(ui){ if(ui!=null){ ui.destroy(); this.is...
来源: Laya_社区 发布时间: 20190517
...你们这个编译器一个bug,不能实现负负得正 通过laya嵌入iframe 后 原本laya禁止微信浏览器里面的上下滑动,又开始上下滑动了 横屏模式在锁定竖屏的iphone上不能正常显示的问题 如何判断横屏竖屏 请问layaair2.0-js 怎么用程序在list...
来源: Laya_社区 发布时间: 20170825
...o.onAsynLoaded=function(url,data,params){ var json=data[0] if (json.type!=="Scene"){ if (url == "scene/Demo_Interiors.ls"){ console.log(data[0]); throw new Error("Scene: the .lh file root type must be Scene,please use other function to load this file."); } } var ...
来源: Laya_社区 发布时间: 20180101
引擎插件版 game.js require 列表被篡改 game.js发布前 if ((typeof swan !== 'undefined') && (typeof swanGlobal !== 'undefined')) { require("swan-game-adapter.js"); require("libs/laya.bdmini.js"); } else if (typeof wx!=="undefined") { require("weap...
来源: Laya_社区 发布时间: 20190926
...har; let charSkin; for (let i = 0; i = 0; i--) { characters[i].update(); } if (Laya.timer.currFrame % 60 === 0) { text.text = Stat.FPS.toString(); } } } class Character extends Laya.Sprite { constructor(images) { super(); this.speed = 5; this.bloodBar; this.animation; this.nameLabel; this.createAnim...
来源: Laya2.0_示例 发布时间: 20241120