Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


GetKeywordName

Gets the string name of the keyword.
Read time 1 minuteLast updated 10 days ago

Definition

GetKeywordName(Shader, ShaderKeyword)

Gets the string name of the keyword.
Warning
Removed. GetKeywordName is deprecated. Use the ShaderKeyword.name property instead.
public static string GetKeywordName(Shader shader, ShaderKeyword index)

Parameters

Returns

Type

Description

string

Remarks

Unity now provides the ShaderKeyword.name API which works with all shader keyword types. It is best practice to use this API instead.

GetKeywordName(ComputeShader, ShaderKeyword)

Gets the string name of the keyword.
Warning
Removed. GetKeywordName is deprecated. Use the ShaderKeyword.name property instead.
public static string GetKeywordName(ComputeShader shader, ShaderKeyword index)

Parameters

Returns

Type

Description

string

Remarks

Unity now provides the ShaderKeyword.name API which works with all shader keyword types. It is best practice to use this API instead.

GetKeywordName()

Gets the string name of the keyword.
Warning
Removed. GetKeywordName is deprecated. Use ShaderKeyword.name instead.
public string GetKeywordName()

Returns

Type

Description

string

Remarks

Unity now provides the ShaderKeyword.name API which works with all shader keyword types. It is best practice to use this API instead.