12345678910111213141516171819 |
- #!/usr/bin/env python3
- import os
- import sys
- sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "../src")))
- from fenrispunk_tools.business.sheets import render_sheet
- if __name__ == "__main__":
- render_sheet(
- outfile="var/sheet.png",
- path_to_sheet_ascii="sheet_ascii.txt",
- sprite_length=8,
- pallet="",
- greyscale=False,
- compression=0,
- )
|