Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


sharedMaterial

The shared material of this object.
Read time 1 minuteLast updated 6 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
public Material sharedMaterial { get; set; }

Remarks

Modifying sharedMaterial will change the appearance of all objects using this material, and change material settings that are stored in the project too.
It is not recommended to modify materials returned by sharedMaterial. If you want to modify the material of a renderer use Renderer.material instead.
Additional Resources: Renderer.material property.