Interface IShaderPropertiesUpdater

interface IShaderPropertiesUpdater {
    updateShaderProperties(
        material: {
            defines: Record<string, undefined | string | number>;
            uniforms: { [name: string]: IUniform };
        },
    ): this;
}

Hierarchy (View Summary)

Implemented by

Methods

  • Parameters

    • material: {
          defines: Record<string, undefined | string | number>;
          uniforms: { [name: string]: IUniform };
      }

    Returns this