Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


AssignNewShaderToMaterial(Material, Shader, Shader)

This method is called when a new shader has been selected for a Material.
Read time 1 minuteLast updated 12 days ago

Definition

  • Type: Method
  • Namespace: UnityEditor
  • Assembly: UnityEditor.CoreModule
public virtual void AssignNewShaderToMaterial(Material material, Shader oldShader, Shader newShader)

Parameters

material

The material the newShader should be assigned to.

oldShader

Previous shader.

newShader

New shader to assign to the material.

Remarks

Can be used for setting up the new shader based on state from the previous shader. Ensure to call base.AssignNewShaderToMaterial to actually set material.shader.