-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.py
25 lines (18 loc) · 825 Bytes
/
Main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import tkinter as tk
from tkinter import filedialog
import easygui
import numpy
from Internal import create_sheet
root = tk.Tk()
root.withdraw()
file = filedialog.askopenfilename(title='Select the spritesheet to rearrange.')
anchor = numpy.clip(easygui.integerbox('choose the sprite anchor (from 1 to 9 starting from the top-left hand corner going from left and right and then frop top to bottom)'), 1, 9)
order = easygui.buttonbox('choose how sprites will be acounted for in the sheet (the result sheet will awlays be ordered horizontally though)', 'Sprites order', ('Horizontally', 'Vertically'))
match order:
case 'Horizontally':
order = False
case 'vertically':
order = True
path = file[:file.rfind('/') + 1]
name = file[file.rfind('/') + 1:-4]
create_sheet(file, anchor, path, order, name)