SphereCommunity

Full Version: Python Script that can be usefull.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Well. Im starting with python to do some tools I need for fast animation creation.
I´ll share this little scripts.
Mostly of this script will be posted focused for Anim edition or "surrounders" and safe as much time as we can.

What you need? Python 3 (or 2) and Thonny. I recommend to use thonny for playing the script, is the way I will ever use until I changed it. Tongue


Automatic FileName Changer:
Windows cmd/bat
Code:
setlocal enabledelayedexpansion
for %%F in (anim*) do (set "FN=%%F" & set "FN=!FN:~12!" & ren "%%F" "!FN!")
nice thing to know.
Reference URL's