Batch Parameter Update
Iterates scene.nodes, checks node_definition.node_id, and calls node.set_parameter() to bulk-update a prefix on all matching nodes. Useful for path remapping across large graphs.
Scripting Console APIs Used
How to Run
- 1Open Vibrante-Node
- 2Go to Scripts menu → Open Script File
- 3Select this .py file from your filesystem
- 4Click Run — or add to Scripts folder for menu shortcut
Tags
Source
examples/automation/02_batch_update_prefix.py
Scripting Console script using scene/app/git globals
Related Examples
Browse all →Build a Linear Chain
beginnerScripting Console script that calls scene.clear(), adds four message nodes with scene.add_node_by_name(), and wires them in sequence with scene.connect_nodes(). The hello-world script.
Trigger Pipeline Execution
intermediateUses scene.find_node_by_name() to locate a target node, calls set_parameter() to inject a value, then calls app.execute_pipeline() to run the full graph programmatically.
Git Workflow Backup
intermediateUses the git global to check repository status and commit all .vnw files. Demonstrates the git.status() and git.commit() scripting console APIs for workflow version control.