Moved entitydir to direction_t

This commit is contained in:
2025-08-18 22:28:22 -05:00
parent 1e57183ca1
commit 6f42a6e195
7 changed files with 111 additions and 91 deletions

View File

@@ -27,7 +27,7 @@ def parseEntity(obj, chunkData):
obj['localX'] = obj['x'] - (chunkData['topLeftTileX'] * TILE_WIDTH_HEIGHT)
obj['localY'] = obj['y'] - (chunkData['topLeftTileY'] * TILE_WIDTH_HEIGHT)
obj['dir'] = 'ENTITY_DIR_SOUTH'
obj['dir'] = 'DIRECTION_SOUTH'
obj['type'] = entType
def getProperty(propName):