This commit is contained in:
2025-08-24 15:18:01 -05:00
parent 479aad2f06
commit 947f21cac7
12 changed files with 99 additions and 177 deletions

View File

@@ -0,0 +1,14 @@
from processtileset import processTileset
processedAssets = []
def processAsset(assetPath):
if assetPath in processedAssets:
return
processedAssets.append(assetPath)
# Handle tiled tilesets
if assetPath.endswith('.tsx'):
processTileset(assetPath)
return