大约有 1,309 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0050 秒)
Laya_社区(1120) Laya2.0_文档(69) Laya3.0_文档(50) Laya2.0_示例(27) Laya_示例(24) Laya3.0_api(17) laya_api(1) Laya2.0_api(1)
...? const scene = new Laya.Scene(); scene.onOpened = () => { console.log('scene onOpened'); }; scene.open(); console.log('scene', scene.active, scene.activeInHierarchy); Laya.timer.frameOnce(10, this, () => { console.log('scene 2', scene.active, scene.activeInHierarchy); }); 日志:...
来源: Laya_社区 发布时间: 20190218
... 和 b.js ```javascript //a.js 中的内容: var a = function(){ console.log("a") } //b.js 中的内容: var b = function(){ console.log("b") } ``` 然后我们引用 js,调用2个方法,在 H5 上是可以正常输出内容的。 ```javascript require("a.js") require("b.js") a(); //a b(); /...
来源: Laya2.0_文档 发布时间: 20210714
...iew.super(this); this.Start.on(Laya.Event.CLICK, this, this.open); console.log(this.Start); GameStartView.prototype.open = function(){ console.log("Open is ok"); } }; Laya.class(GameStartView,"GameStartView", GameStartUI); 输出:Button {toggle: false, _bitmap: AutoBitmap, _text: Text, _strokeColo...
来源: Laya_社区 发布时间: 20180213
... msgByte:Laya.Byte = new Laya.Byte(); msgByte.writeUTFBytes("aabbcc"); var LoginReqCls:any =LoginRoot.lookup("login_req"); var loginReq:any = LoginReqCls.create({ 'channel': 2, 'msg': msgByte.buffer }); var loginProto:any= LoginReqCls.encode(loginReq).finish(); var de_loginProto= LoginReqCls.decode(...
来源: Laya_社区 发布时间: 20171105
...取资源中的txt文件中的内容 var testPath ="res/Test.txt"; console.log( Laya.loader.load(testPath)); console.log(Laya.Loader.getRes(testPath)); 这里打印的是 LoaderManager {retryNum: 1, retryDelay: 0, maxLoader: 5, _loaders: Array(4), _loaderCount: 1…} undefined 并不是文本的内...
来源: Laya_社区 发布时间: 20171009
...送事件 Dispatcher.Emit = function(InName,agv){ //派发事件 console.log("agv-->"+agv); Dispatcher.eventDispatcher.event(InName,agv); } //侦听事件 Dispatcher.AddNotice = function(InName,caller,listener,arg){ //监听事件 Dispatcher.eventDispatcher.on(InName,caller,listener,(arg==null)?n...
来源: Laya_社区 发布时间: 20170809
...etChildByName('btn' + i) as Laya.Image; console.log(e); e.on(Laya.Event.CLICK, this, this.onBtnClick); } 按钮事件 private onBtnClick(event:Laya.Event): void { let b = event.currentTarget as Laya.Image; console.log('onClickLevel > ' + b.skin); this...
来源: Laya_社区 发布时间: 20190802
...(会重命名文件名称的) 例子代码: LoadError(){console.log("LoadError")} LoadOK(){console.log("LoadOK")} Laya.loader.on(Laya.Event.ERROR,this,this.LoadError) Laya.loader.load("不存在的图片URL",Laya.Handler(this,this.LoadOK)); 发布成微信小游戏版本在真机...
来源: Laya_社区 发布时间: 20180920
...native热更新 打进apk包内的资源,无法动态更新了,看到log有下载filetable.bin,但是没更新对应的文件 图1:是运行后打印的log&看到filetable.bin下载,需要更新 图2:是运行后的效果看到main.js没有更新,还是读取包内的 图3:包内...
来源: Laya_社区 发布时间: 20190830
在ios上出现因为出现问题,从网页已重新载入 无法获得log信息,运行内存不到100M,不定时崩溃,请问大佬们有没有什么办法可以获得log信息,或者解决问题的方向也行。 附件 : --> 2018-11-27 添加评论 免费帖 --> 分享 微博 QZONE ...
来源: Laya_社区 发布时间: 20181127