This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import bpy | |
| import sys | |
| def print_progress_bar(progress, total, prefix='Processing', suffix='Complete', length=30): | |
| """ | |
| Prints a progress bar to the console. | |
| """ | |
| percent = progress / total if total else 1 | |
| filled_length = int(length * percent) | |
| bar = '#' * filled_length + '-' * (length - filled_length) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # uses rclone as backend | |
| # install and rclone and cerate add romote named storagebox (reminder for me -> hetzner storage box using WebDAV) | |
| # run script -> backupy.py dir_to_backup | |
| # example -> backupy.py C:\Users\david\Documents\Projects\CS_IAA_HoloFace | |
| import os | |
| import subprocess | |
| import argparse | |
| from pathlib import Path |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Mixamo Animation downloadeer | |
| // | |
| // Author: Antonio Aloisio <[email protected]> | |
| // Contributions: kriNon | |
| // | |
| // The following script make use of mixamo2 API to download all anims for a single character that you choose. | |
| // The animations are saved with descriptive long names instead of the short ones used by default by mixamo UI. | |
| // | |
| // This script has been written by [email protected] and the author is not responsible of its usage | |
| // |