Files
dusk/tools/assetstool/assethelpers.py
2025-08-24 15:18:01 -05:00

7 lines
181 B
Python

import os
from args import args
def getAssetRelativePath(fullPath):
# Get the relative path to the asset
return os.path.relpath(fullPath, start=args.assets).replace('\\', '/')