ConstValue.ts 308 B

12345678910111213141516
  1. /** @format */
  2. export class ConstValue {
  3. public static DEBUG = true
  4. public static CANVAS_HEIGHT = 1080
  5. public static CANVAS_WIDTH = 1920
  6. static get REAL_HEIGHT(): number {
  7. return cc.winSize.height
  8. }
  9. static get REAL_WIDTH(): number {
  10. return cc.winSize.width
  11. }
  12. }