Skip to main content
RunUntilButton(label="Run Until this Node")

Example

from mirmod.controls import RunUntilButton

@wob.receiver("state", "run", control=RunUntilButton(label="Execute to Here"), hidden=False, connectable=False)
def run_until(self, data):
	pass
This control allows users to run the graph until the node is reached. It’s useful for creating nodes that update their attributes based on their inputs during partial execution.

Parameters

NameTypeDescription
labelstringThe text displayed on the button. Default “Run Until this Node”.