1
Fork 0
mirror of https://github.com/Steffo99/hella-farm.git synced 2024-11-21 23:54:23 +00:00
hella-farm/enums.gd

18 lines
235 B
GDScript3
Raw Normal View History

class_name Enums
enum ZIndex {
2024-04-29 01:20:27 +00:00
EntityAir = 10,
EntitySacrifice = 5,
EntityGround = 0,
Gold = -5,
Props = -10,
Flowers = -20,
Terrain = -30,
}
2024-05-02 23:37:20 +00:00
enum PhysLayers {
EntityGround = 8,
EntityAir = 16,
}