Skip to content

Commit 8a5edab

Browse files
Add shelf tool to auto-populate quick rnd setup, which was previously located in 123.py.
1 parent 231230c commit 8a5edab

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

shelf/houToolSceneRnD.py

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# -----------------------------------------------------------
2+
# houToolSceneRnD.py
3+
# v.1.0
4+
# Updated: 20210123
5+
# -----------------------------------------------------------
6+
7+
"""
8+
Shelf tool to auto populate networks with relevant nodes and
9+
configurations for quick research & development. Setup includes
10+
base geometry, camera and light setups, basic material palette,
11+
and typical Redshift render ROP.
12+
"""
13+
14+
from common_py_lib import utils, uiUtils
15+
16+
def main():
17+
# -----------------------------------------------------------
18+
# CONTENT CREATION )))))))))))))))))))))))))))))))))))) START
19+
# -----------------------------------------------------------
20+
utils.lib_create_refNodeNet()
21+
utils.lib_create_geoNodeNet()
22+
utils.lib_create_dopNodeNet()
23+
utils.lib_create_rndrNodeNet()
24+
utils.lib_create_cameraNodeNet()
25+
utils.lib_create_redshiftNodeNet()
26+
utils.lib_create_lightNodeNet()
27+
utils.lib_create_matNodeNet()
28+
# accessory content creation
29+
utils.lib_create_geoBkgdGrid()
30+
# -----------------------------------------------------------
31+
# CONTENT CREATION )))))))))))))))))))))))))))))))))))}}) END
32+
# -----------------------------------------------------------
33+
34+
main()

0 commit comments

Comments
 (0)