Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The script looks for daemons in the scene and groups them under a new "Daemon_Group" node:

 

Code Block
languagepy
daemons = scene.getDaemons()
group   = scene.addGroup()
 
group.setName("Daemon_Group")
 
for entry in daemons:
	group.add(entry.getName())

...