Shader parameters
Shader parameters are properties on the shader class that you can set in the editor for materials created using the shader. This allows you to customize the shader's appearance from the editor and reuse the code for different materials
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