Skip to content

Instantly share code, notes, and snippets.

View digitaldosyanich's full-sized avatar
🙃

Gosha Dos digitaldosyanich

🙃
View GitHub Profile
@digitaldosyanich
digitaldosyanich / off_templateflags.py
Last active April 9, 2023 09:26 — forked from kickbase/off_templateflags.py
[Houdini] [Python] Turn the template flags off in current SOPnetwork.
import hou
def off_templateflags(current):
for child in current.children():
node = hou.node(child.path())
if "setTemplateFlag" in dir(node):
node.setTemplateFlag(False)
def main():