Version: 2022.3
言語: 日本語

ShaderUtil.PassHasKeyword(Shader,Rendering.PassIdentifier,Rendering.LocalKeyword)

マニュアルに切り替える

パラメーター

s The shader the Pass belongs to.
passIdentifier The identifier of a Pass within the given shader.
keyword The local shader keyword to check.

戻り値

void Returns true if the keyword is valid for the given Pass. Otherwise, returns false. If the PassIdentifier you use is invalid, this function returns false and Unity displays an error in the Console window.

説明

Checks whether a local shader keyword is valid for a Pass within a particular shader.

See Also: Pass.


パラメーター

s The shader the Pass belongs to.
passIdentifier The identifier of a Pass within the given shader.
keyword The local shader keyword to check.
shaderType The shader stage of the given pass.

戻り値

void Returns true if the keyword is valid for the given shader stage of the Pass. Otherwise, returns false. If the PassIdentifier you use is invalid, this function returns false and Unity displays an error in the Console window.

説明

Checks whether a local shader keyword is valid for a particular shader stage of a Pass within a particular shader.

See Also: Pass.


パラメーター

s The shader the Pass belongs to.
passIdentifier The identifier of a Pass within the given shader.
keyword The local shader keyword to check.
shaderType The shader stage of the given pass.
shaderCompilerPlatform The shader compiler platform to check against.

戻り値

void Returns true if the keyword is valid for the given shader stage of the Pass for the given ShaderCompilerPlatform. Otherwise, returns false. If the PassIdentifier you use is invalid, this function returns false and Unity displays an error in the Console window.

説明

Checks whether a local shader keyword is valid for a particular shader stage of a Pass within a particular shader for the given shader compiler platform.

Some shader compiler platforms combine several shader stages in one. This method overload ensures that correct data is returned for all shader compiler platforms.

See Also: Pass.