-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbeforescenesave.py
25 lines (21 loc) · 960 Bytes
/
beforescenesave.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -----------------------------------------------------------
# beforescenesave.py
# v.1.0
# Updated: 20211117
# Houdini version: 18.5.563, Python 3
# -----------------------------------------------------------
"""
Script recognized by Houdini to run before a save operation is
performed on the working .hip file.
Ref: https://www.sidefx.com/docs/houdini/hom/locations.html#run-scripts-before-and-or-after-saving-the-scene-hip-file
"""
# -----------------------------------------------------------
# OPERATIONS )))))))))))))))))))))))))))))))))))))))))) START
# -----------------------------------------------------------
print("**************************")
print("Before Scene Save")
print("File is prepared for saving.")
# Print operations log to the Houdini console.
# -----------------------------------------------------------
# OPERATIONS )))))))))))))))))))))))))))))))))))))))))))) END
# -----------------------------------------------------------