• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 258 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0039 秒)

111. 分享个平时做网页端,移动端开发的调试工具,实时同步PC移动设备刷新 [ 67%]

...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

112. spine 播放错乱 [ 66%]

...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

113. 分享:Dragonbones/Spine的换肤操作 [ 66%]

...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

114. 在android studio上运行ConchJNI.RunJS("JaveCallback.onHide()"),提示JaveCallback is not defined [ 66%]

...的链接 提交 1 个回复 闫小米R 赞同来自: 据说需要加 Laya,Browser.window.JaveCallback = JaveCallback; 把你的类注册到全局 2020-10-15 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 137*****912 相关问题 Layabo...

来源: Laya_社区 发布时间: 20191212

115. 使用Laya2.0做微信开放数据域是出错。 [ 65%]

...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

116. TypeError: Cannot read property 'on' of null [ 65%]

....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

117. 版本号:2.0.2 beta, 在sound文件夹下音乐播放不了,放入到res文件夹下可播放 [ 65%]

...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

118. 程序当中更改适配模式后,没有生效成相对应的适配模式效果是为什么? [ 65%]

...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

119. 个人笔记:失焦或静音状态下播放背景音乐无效的解决方案 [ 65%]

...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

120. 使用官方文档中qrcode生成二维码的代码,打包APP后无效 [ 65%]

...看下是什么问题,谢谢! 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