game/tiling/tile.gd

28 lines
202 B
GDScript3
Raw Normal View History

class_name Tile extends Resource
##
##
##
enum Kind {
FLOOR,
WALL,
}
##
##
##
@export
var fixed_orientation := false
##
##
##
@export
var kind := Kind.FLOOR
##
##
##
@export
var mesh: Mesh = null