Version: 2022.1
LanguageEnglish
  • C#

Material.parent

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
public Material parent;

Description

Parent of this material.

Materials with a non null parent are referred to as material variants.

Material variants will inherit all their properties from their parent, and can override them on a per property basis. Changing the value of a property of a material will therefore impact all variants below in the hierarchy.

This property is only available in the Editor, in a built project all material hierarchies are flattened.

See Also: Material.IsChildOf, Material.IsPropertyOverriden, Material.IsPropertyLocked.

using UnityEngine;
using UnityEditor;

public class Example : MonoBehaviour { #if UNITY_EDITOR [MenuItem("GameObject/Create Material Variant")] static void DuplicateMaterial() { Material selected = Selection.activeObject as Material; if (selected == null) return;

// Create a material variant from selected material // And override it's color to red Material material = new Material(selected); material.parent = selected; material.color = Color.red;

AssetDatabase.CreateAsset(material, "Assets/" + selected.name + " Variant.mat"); } #endif }