1
Fork 0
mirror of https://github.com/Steffo99/hella-farm.git synced 2024-10-16 14:27:36 +00:00
hella-farm/enums.gd
2024-05-03 01:37:20 +02:00

17 lines
235 B
GDScript

class_name Enums
enum ZIndex {
EntityAir = 10,
EntitySacrifice = 5,
EntityGround = 0,
Gold = -5,
Props = -10,
Flowers = -20,
Terrain = -30,
}
enum PhysLayers {
EntityGround = 8,
EntityAir = 16,
}