Contents

parameterNames

The names of all parameters declared by the graph definition.

Declaration

var parameterNames: [String] { get }

Discussion

Use this list to discover the parameters a graph exposes for runtime control. Set values for these parameters through the owning entity’s parameter binding rather than through the resource itself, so that any entity using the graph can drive it with values that match its own state:

entity.parameters["MoveSpeed"] = BindableValue(Float(1.0))