Actor parameters
Actor parameters are properties on actors that you can set in the editor for each instance of an actor. This allows you to control the functionality of an actor without having to change code.
Parameters can be created by adding the @Parameter()
decorator on a property in your actor class. The type of the parameter will be inferred by your property's type annotation.
The example below shows all currently supported types.
Last updated