You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Local tile:TImage= LoadImage("Incbin::assets/tile")
206
+
For row =0To3
207
+
For frame =0To FRAMES-1
208
+
'Draw a tile outline around all frames to see we are within bounds.
209
+
DrawImage(tile,62+(frame*(TILESIZE/INPUTZOOM+8)),138+(row*48)) 'Doing this with an image because cba doing the math with DrawLine. Offsets are -1px because tile image is 26x26 for outline and tile is 24x24.
exportedFile = RequestFile("Save graphic output","",True) 'No file extensions here, we add them later manually otherwise exported file name is messed up.
92
+
'Foolproofing
93
+
If exportedFile = importedFile Then
94
+
Notify("Cannot overwrite source image!",True)
95
+
ElseIf exportedFile <> importedFile And exportedFile <>NullThen
96
+
'Writing new file
97
+
Local row:Int, frame:Int
98
+
For row =0To3
99
+
'Name the rows - by default: ArmFG, ArmBG, LegFG, LegBG in this order.
0 commit comments