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

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

1. layaMaxUI.js export ui bug (影响编译) [ 100%]

... ui bug 在layaMaxUI.js中 由 if(!window.ui)window.ui={};...export {ui as default}; 引起 附件 : --> 2019-08-13 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 9 个回复 Laya_Aaron 赞同来自: 什么版本有demo 吗...

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

2. 关于位图字体使用问题,参照官方文档,显示不出 [ 99%]

关于位图字体使用问题,参照官方文档,显示不出 export default class AllText extends ui.examples.text.BitmapFontUI   ui.examples.text.BitmapFontUI 找不到继承的类   laya is not define   参见 demo 附件 : --> Test1.rar 2020-11-29 添加评论 免费帖 --> 分享 微博 ...

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

3. 已经在vs上引用相关的类,编译后bundle.js却没有相关的代码 [ 96%]

... 有谁碰到过这样的问题? 一个common.ts里面定义了export default class SDispatcher implements ISDispatcher{},然后在其他类里面继承。并导包。export default class xxxx extends SDispatcher{},在vs里面没有发现报错。进行指令编译后,运行bundle.js...

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

4. 如何使用TS的命名空间(namespace)? [ 95%]

...t class AC { public static myname:string = "I'm AC!"; } } export default AM; b.ts ----------------------------------- module AM{ export class BC { public static myname:string = "I'm BC!"; } } export default AM; c.ts --------------------------------------- import AM from './a'; im...

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

5. 引擎创建的GameConfig.ts报错 [ 95%]

.../gameconfig.ts(2,8): Error TS1192: Module '"src/script/maingameui"' has no default export. 请问我的操作有问题吗,如果让脚本控制场景上的元素,比如一张图片,是不是应该这么做 2018-10-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结...

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

6. 2D示例项目,新建一个scene,导出后gameconfig报错 [ 91%]

...  没有项目看不了。。   猜测是你 gameview  没有 export default 2019-08-26 0 1 分享 微博 QZONE 微信 履超网络~渠道经理 赞同来自: 解决了,在声明GameView类时必须用export default,不能只写export,感谢Aaron 2019-08-26 0 0 分享 微博 QZONE 微信...

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

7. 新手入坑请教下各位大神关于LayaMaxUI问题 [ 90%]

...这个LayaMaxUI里面没有 module ui.test这个模块         export default class LoginScene extends Laya.Scene{ public btnReg:Laya.Button; public btnLogin:Laya.Button;  constructor(){ super();  this.btnLogin.on(Laya.Event.CLICK,this,()=>{ console.log('btnLogin click') }) }  createChildr...

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

8. 2.0版本,Particle2D is not a constructor [ 87%]

2.0版本,Particle2D is not a constructor export default class RunMain extends Laya.Sprite{ constructor(){ super(); Laya.loader.load([{url:"res/213.part",type:Laya.Loader.JSON}],Laya.Handler.create(this,this.onAssetsLoaded)); } onAssetsLoaded(){ let pg = Laya.loader.getRes("res/213.part"); let pd...

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

9. 二次开发中:平台代码(android/ios)主动执行js脚本,在Laya1.0中生效,在Laya2.0中不生效 [ 82%]

...本,在Laya1.0中生效,在Laya2.0中不生效 laya中代码:export default class Test  {     public static  onClick():void{         alert("123456");     }     public static onClick1():void{            } } 原生中代码:ConchJNI.RunJS("Test.onClick()"); 原生中报错:...

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

10. ts项目 模块问题 [ 82%]

... class? export 显示未定义,require也用不了   //b文件 export default class player extends Laya.Sprite { constructor() { super(); this.pivot(this.width / 2, this.height / 2); this.graphics.drawRect(0, 0, this._size, this._size, this._color); } }   //a文件 import player from './player...

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