Page History
...
Code Block | ||
---|---|---|
| ||
import c4d, os, sys
# add the script folder to the system path
scripts_folder = os.path.join(c4d.storage.GeGetC4DPath(c4d.C4D_PATH_LIBRARY), "scripts")
if scripts_folder not in sys.path:
sys.path.append(scripts_folder) |
...