Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


enabledKeywords

An array containing the local shader keywords that are currently enabled for this material.
Read time 1 minuteLast updated 5 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
public LocalKeyword[] enabledKeywords { get; set; }

Remarks

Shader keywords determine which shader variants Unity uses. For information on working with local shader keywords and global shader keywords and how they interact, see Using shader keywords with C# scripts.
This example prints the names of all currently enabled local shader keywords for a material.
using UnityEngine;using UnityEngine.Rendering;public class Example : MonoBehaviour{ public Material material; private void Start() { foreach (var localKeyword in material.enabledKeywords) { Debug.Log("Local shader keyword " + localKeyword.name + " is currently enabled"); } }}