GameUILayers.ts 359 B

12345678910111213141516171819202122232425262728
  1. enum GameUILayers {
  2. GAME,
  3. JOY_STICK,
  4. HUD,
  5. POPUP,
  6. POPUP1,
  7. POPUP2,
  8. ALERT,
  9. NOTICE,
  10. LOADING,
  11. OVERLAY,
  12. NUM
  13. }
  14. const GameUILayerNames = [
  15. 'game',
  16. 'joy_stick',
  17. 'hud',
  18. 'popup',
  19. 'popup1',
  20. 'popup2',
  21. 'alert',
  22. 'notice',
  23. 'loading',
  24. 'overlay'
  25. ];
  26. export { GameUILayers, GameUILayerNames };