Files
shadow-pixel-run/map/tile.gd
T

9 lines
242 B
GDScript
Raw Normal View History

## Tile.gd
# Resource representing a single tile in the map.
# Used for storing tile properties such as walkability.
class_name Tile
extends Resource
# Whether this tile can be walked on (used for pathfinding).
var is_walkable: bool = false