大约有 4 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0016 秒)
....js,spine-core-3.7.js,在项目代码中可以成功引入SpineTemplet,SpineVersion等相关类,但是运行期间却找不到相关类。demo里在GameUI.ts的onEnble里加入了一句:let templet=new Laya.SpineTemplet(Laya.SpineVersion.v3_7);编译正常,但是运行报错,找不到spi...
来源: Laya_社区 发布时间: 20230309
... startFun() { if (!this.templet) this.templet = new Laya.SpineTemplet(Laya.SpineVersion.v3_8); this.templet.loadAni(this.aniPath); this.templet.on(Laya.Event.COMPLETE, this, this.parseComplete); this.templet.on(Laya.Event.ERROR, this, this.onError); }加载方式用的官方案例,本地跑是没...
来源: Laya_社区 发布时间: 20211207
...ine(url, handler: Laya.Handler) { var templet = new Laya.SpineTemplet(Laya.SpineVersion.v4_0); templet.on(Laya.Event.COMPLETE, handler.caller, handler.method); templet.on(Laya.Event.ERROR, this, this.printError); templet.loadAni(url); } printError(e) { console.error(e); } } //激活启动类 new M...
来源: Laya_社区 发布时间: 20220530
... } startFun() { this.templet = new SpineTemplet(Laya.SpineVersion.v3_8); this.templet.loadAni(this.aniPath); this.templet.on(Event.COMPLETE, this, this.parseComplete); this.templet.on(Event.ERROR, this, this.onError); } parseComple...
来源: Laya_社区 发布时间: 20211013