Coming from a 3D software I always wanted an incremental save function within tvpaint. Here's one that works by saving the current frame as a jpg file with a prefix and to a set path. It will look for the files within the directory with that custom naming and do an incremental save based on the highest number found.
By default it will save it every time you click it as:
C:\SK_001.jpg
C:\SK_002.jpg
If you need to customize the format, these two variables will do the trick
Code: Select all
// Define file prefix
filePrefix = "SK_"
// Fixed export folder path
exportFolderPath = "C:\\"
Also the function can be mapped to a shortcut for quicksave, I have it under CTRL+SHIFT+W
No dialogs and no prompts, statusbar will display the final path and filename