大约有 42 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0027 秒)
...,或者在使用之前的类中,手动注册 runtime 形如: var reg:Function = ClassUtils.regClass; reg("script.GameUI",GameUI); 注册自己的 runtime 即可 2019-02-13 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 该问题目前已经...
来源: Laya_社区 发布时间: 20190201
...法,用于获取: function getQueryString(name) {//JS获取URL参数 var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); var r = window.location.search.substr(1).match(reg); if (r != null) { return (r[2]); } else { return null; } } 2018-06-14 0 0 分享 微博 QZONE 微信 为...
来源: Laya_社区 发布时间: 20180516
...:void { super.createChildren(); this.createView(GameSceneuiUI.uiView); } } REG("ui.GameSceneuiUI",GameSceneuiUI); export class GameViewUI extends Laya.View { public static uiView:any ={"type":"View","props":{"width":720,"height":1280},"compId":2,"child":[{"type":"Button","props":{"y":616,"x":296,"sk...
来源: Laya_社区 发布时间: 20200228
...this.createView(GameSceneuiUI.uiView); } } REG("ui.GameSceneuiUI",GameSceneuiUI); export class GameViewUI extends Laya.View { public static uiView:any ={"type":"View","props":{"width":720,"height":1280},"compId":2,"child":[{"type":"Bu...
来源: Laya_社区 发布时间: 20200228
... from '../SceneBase' import View=Laya.View; import Dialog=Laya.Dialog; var REG: Function = Laya.ClassUtils.regClass; export module ui { export class MainSceneUI extends Laya.SceneBase { constructor(){ super()} createChildren():void { super.createChildren(); this.loadScene("MainScene"); } } REG("ui.M...
来源: Laya_社区 发布时间: 20190418
..." }, { url: "res/atlas/11.atlas" }, { url: "res/atlas/12.atlas" }, { url: "regli.part" }, { url: "res/atlas/99.atlas" }, { url: "res/atlas/skills.atlas" }, { url: "res/atlas/effect/chi1.atlas" }, { url: "res/atlas/effect/chi2.atlas" }, { url: "res/atlas/effect/法师雷电脉冲.atlas" }, { url: "re...
来源: Laya_社区 发布时间: 20180710
...static exportSceneToJson:boolean=false; constructor(){} static init(){ var reg: Function = Laya.ClassUtils.regClass; reg("game/ImageRunTime.ts",ImageRunTime); } } GameConfig.init(); 2018-10-15 0 0 分享 微博 QZONE 微信 Laya_Aaron 赞同来自: https://ldc2.layabox.com/doc/?nav=zh-as-2-4-1 照...
来源: Laya_社区 发布时间: 20181014
...ype; // __class(yfqian,'yfqian_script'); yfqian.getUrl=function(name){ var reg = new RegExp("(^|\\?|&)"+ name +"=([^&]*)(\\s|&|$)", "i"); if (reg.test(location.href)) return unescape(RegExp.$2.replace(/\+/g, " ")); return ""; } return yfqian; })(); new yfqian(); 2019-07-23 0 0 分享 微...
来源: Laya_社区 发布时间: 20190313
..., Laya.Handler.create(this, this.onLoaded)) onLoaded(){ // Laya.ClassUtils.regClass('ui.TestPUI', ui.TestPUI) var efc = new ui.TestPUI(); Laya.stage.addChild(efc); } 按照官方文档,运行后报错 Main.js:61 Uncaught ReferenceError: ui is not defined 之前有人提过这个问题,但是一...
来源: Laya_社区 发布时间: 20210111
... //注册Script或者Runtime引用 let reg = Laya.ClassUtils.regClass; reg("script/GameMain.js",GameMain); } } GameConfig.width = 640; GameConfig.height = 1136; GameConfig.scaleMode ="fixedwidth"; GameConfig.screenMo...
来源: Laya_社区 发布时间: 20201110