12-19-2023, 08:36 AM
A pattern like {numUp0}.png will export the files as 0.png, 1.png, ... 9.png, 10.png, 11.png ... where 0.png is at the bottom of the layer stack. If you export many layers and want names that will always be sorted right, you can have names padded with 0's on the left using {numUp0:03d}.png that will export the files as 000.png, 001.png, ... 009.png, 010.png, 011.png, ... 099.png, 100.png, 101.png, .....
The :03d means:
The :03d means:
- :: start the format specification
- 0: pad with zeros to the left
- 3: make the number 3 characters minimum (without the preceding 0, that would be using spaces). If you have more than 100 layers, better make that a 4.
- d: use formatting rules for integer numbers