Version: 2021.3
LanguageEnglish
  • C#

ApplyRulesIfGraphicsAPIAttribute

class in UnityEditor.ShaderKeywordFilter

/

Inherits from:ShaderKeywordFilter.GraphicsAPIConstraintAttribute

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

Description

Enable or disable shader keyword filter attributes based on the graphics API.

If you use this attribute, Unity enables filter attributes if the current build target matches any of the graphicsDeviceTypes.

The following example builds only variants including the VulkanVariant keyword if you build for the Vulkan graphics API.

using UnityEditor.ShaderKeywordFilter;

[ApplyRulesIfGraphicsAPI(GraphicsDeviceType.Vulkan)] [SelectIf(true, keywordNames: "VulkanVariant")] bool forceVulkanVariant;

Additional resources: FilterAttribute.

Constructors

ApplyRulesIfGraphicsAPIAttributeEnable or disable shader keyword filter attributes based on the graphics API.

Inherited Members