/**This class is automatically generated by LayaAirIDE, please do not make any modifications. */ import TestScene from "./TestScene" import ScaleButtonScript from "./uitl/ScaleButtonScript" import RedDrawal from "./RedDrawal" import NativeAd from "./sdk/NativeAd" /* * 游戏初始化配置; */ export default class GameConfig{ static width:number=750; static height:number=1334; static scaleMode:string="fixedwidth"; static screenMode:string="none"; static alignV:string="top"; static alignH:string="left"; static startScene:any="TestScene.scene"; static sceneRoot:string=""; static debug:boolean=false; static stat:boolean=false; static physicsDebug:boolean=false; static exportSceneToJson:boolean=true; constructor(){} static init(){ var reg: Function = Laya.ClassUtils.regClass; reg("TestScene.ts",TestScene); reg("uitl/ScaleButtonScript.ts",ScaleButtonScript); reg("RedDrawal.ts",RedDrawal); reg("sdk/NativeAd.ts",NativeAd); } } GameConfig.init();