大约有 51 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0039 秒)
...可以控制显示速度出现打字效果等 /**古文脚本 */ export default class TextAncient extends Laya.Script { /** @prop {name:text, tips:"显示文本", type:String, default:"hello world"}*/ public text: string = "hello world"; /** @prop {name:color, tips:"字符串类型示例", type:St...
来源: Laya_社区 发布时间: 20191103
... 有谁碰到过这样的问题? 一个common.ts里面定义了export default class SDispatcher implements ISDispatcher{},然后在其他类里面继承。并导包。export default class xxxx extends SDispatcher{},在vs里面没有发现报错。进行指令编译后,运行bundle.js...
来源: Laya_社区 发布时间: 20200817
...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
关于位图字体使用问题,参照官方文档,显示不出 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
.../gameconfig.ts(2,8): Error TS1192: Module '"src/script/maingameui"' has no default export. 请问我的操作有问题吗,如果让脚本控制场景上的元素,比如一张图片,是不是应该这么做 2018-10-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结...
来源: Laya_社区 发布时间: 20181025
... ui bug 在layaMaxUI.js中 由 if(!window.ui)window.ui={};...export {ui as default}; 引起 附件 : --> 2019-08-13 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 9 个回复 Laya_Aaron 赞同来自: 什么版本有demo 吗...
来源: Laya_社区 发布时间: 20190813
...这个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
... 没有项目看不了。。 猜测是你 gameview 没有 export default 2019-08-26 0 1 分享 微博 QZONE 微信 履超网络~渠道经理 赞同来自: 解决了,在声明GameView类时必须用export default,不能只写export,感谢Aaron 2019-08-26 0 0 分享 微博 QZONE 微信...
来源: Laya_社区 发布时间: 20190824
... AM{ export 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'; //这一句LayaAir IDE 2.0会自...
来源: Laya_社区 发布时间: 20180926
...本,在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