大约有 258 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0039 秒)
...IDE不能检测到的错误。 这个是工具的官网: http://www.browsersync.cn/ 1. 首先安装了node环境 https://nodejs.org/en/ 2. 更改为国内淘宝镜像源 npm config set registry https://registry.npm.taobao.org 3. 打开CMD npm install -g browser-sync 4. cmd命令 ...
来源: Laya_社区 发布时间: 20170619
...uildArmature(); Laya.stage.addChild(this.skeleton); this.skeleton.pos(Laya.Browser.width / 2, Laya.Browser.height / 2 + 100); //this.skeleton.scale(0.5, 0.5); this.skeleton.on(Laya.Event.STOPPED, this, this.play); this.play(); } private onError() { console.error("load spine error"); } private play()...
来源: Laya_社区 发布时间: 20210813
...ite; import laya.display.Text; import laya.events.Event; import laya.utils.Browser; import laya.utils.Stat; import laya.webgl.WebGL; public class LayaAirDemo { private var templete:Templet;//动画模板类 private var skeleton:Skeleton;//骨骼动画类 private var curNum:int=0;//curNum%2求余数...
来源: Laya_社区 发布时间: 20170324
...的链接 提交 1 个回复 闫小米R 赞同来自: 据说需要加 Laya,Browser.window.JaveCallback = JaveCallback; 把你的类注册到全局 2020-10-15 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 137*****912 相关问题 Layabo...
来源: Laya_社区 发布时间: 20191212
...xmini.js:91) at Function.MiniAdpter.enable (laya.wxmini.js:77) at Function.Browser.__init__ (laya.core.js:4125) at Object.Laya.init (laya.core.js:252) at new Main (Main.ts:6) at Object.2../GameConfig (Main.ts:35) at o (_prelude.js:11) at r (_prelude.js:11) at _prelude.js:11 MiniFileMgr.setNativeFile...
来源: Laya_社区 发布时间: 20181107
....js:4515 TypeError: addGlobalValueDefine is not a function TypeError: Laya.Browser.window.conch.setFontFaceFromBuffer is not a function Uncaught TypeError: Class constructor Component cannot be invoked without 'new' 关于graphics.drawTexture方法设置纹理报错TypeError: texture.getIsReady is n...
来源: Laya_社区 发布时间: 20190523
...import Event = Laya.Event; import SoundManager = Laya.SoundManager; import Browser = Laya.Browser; import Handler = Laya.Handler; import WebGL = Laya.WebGL; export default class Test_11_Sound { //声明一个信息文本 private txtInfo: Text; constructor() { this.setup(); } private setup(): v...
来源: Laya_社区 发布时间: 20190421
...nResize); /** 更改适配*/ public onResize() { var stageWidth = Laya.Browser.clientWidth; var stageHeight = Laya.Browser.clientHeight; if (stageWidth < stageHeight) { console.log("one", Laya.stage.scaleMode) Laya.stage.scaleMode = Laya.Stage.SCALE_NOSCALE; //1 console.log("one1", Laya.stage...
来源: Laya_社区 发布时间: 20170920
...er._muted || SoundManager._soundMuted){ return null; } }; var tSound; if (!Browser.onMiniGame){ tSound=Laya.loader.getRes(url); } if (!soundClass)soundClass=SoundManager._soundClass; if (!tSound){ tSound=new soundClass(); tSound.load(url); if (!Browser.onMiniGame){ Loader.cacheRes(url,tSound); } }; ...
来源: Laya_社区 发布时间: 20181019
...看下是什么问题,谢谢! private initCode() { var div: any = Laya.Browser.document.createElement("div"); this.qrcode = new Laya.Browser.window.QRCode(div, { width: 100, height: 100 }); var url: string = this.URL; this.qrcode.makeCode(url); Laya.stage.once("click", this, this.clickHandler); ...
来源: Laya_社区 发布时间: 20180412