9 lines
356 B
TypeScript
9 lines
356 B
TypeScript
//this file contains all the depth indexes which will be used in our game
|
|
|
|
export const DEPTH_TILE_INDEX = 0;
|
|
//Note: Player characters use their y coordinate as their depth to simulate a perspective.
|
|
//See the Character class.
|
|
export const DEPTH_OVERLAY_INDEX = 10000;
|
|
export const DEPTH_INGAME_TEXT_INDEX = 100000;
|
|
export const DEPTH_UI_INDEX = 1000000;
|