Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

Add this script to a "Batch Script" editor (F10) and execute it with Script > Run.

Find all objects in a selection of nodes and activate their "Active rigid body" dynamics feature:

nodeSelection = scene.getSelectedNodes()
 
for entry in nodeSelection:
	if (entry.getType() == TYPE_OBJECT):
		entry.setParameter("Dynamics", "Active rigid body")

  • No labels