GameConst.ts 291 B

1234567891011
  1. class GameConst {
  2. static readonly Gravity:number = -700;//440;
  3. static readonly VSTimeScale:number = 1.1;
  4. /**日志开关3:开启log,2:开启warn,1:开启error和reprort*/
  5. public static get logType():number{return 4;}
  6. }
  7. (<any>window).GameConst = GameConst;