Version: 2020.3

Material.shaderKeywords

切换到手册
public string[] shaderKeywords ;

描述

An array containing the names of the local shader keywords that are currently enabled for this material.

Shader keywords determine which shader variants Unity uses. For information on working with local 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.

using UnityEngine;

public class Example : MonoBehaviour { public Material mat;

private void Start() { foreach (var keywordName in mat.shaderKeywords) { Debug.Log("Local shader keyword " + keywordName + " is currently enabled"); } } }