# UsageHints

> Offers a set of options that describe the intended usage patterns of a VisualElement. These options serve as guidance for optimizations. You can set multiple usage hints on an element. For example, if both position and color change, you can set both UsageHints.DynamicTransform and UsageHints.DynamicColor. Note: Set the usage hints at edit time or before you add the VisualElement to a panel. In the case of transition, when it starts, the system might automatically add missing relevant usage hints to avoid regenerating geometry in every frame. However, this causes a one-frame performance penalty because the rendering data for the VisualElement and its descendants is regenerated.

## Definition

* **Type:** Enum
* **Namespace:** [UnityEngine.UIElements](/engine/6000.6/script-reference/unityengine/uielements.md)
* **Assembly:** UnityEngine.UIElementsModule

```csharp
[Flags]
public enum UsageHints
```

## Fields

| Value                                                                                                               | Description                                                                                                                                                                                                                                                                                                                                            |
| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| [DynamicColor](/engine/6000.6/script-reference/unityengine/uielements/usagehints/dynamiccolor.md)                   | Optimizes rendering of a [VisualElement](/engine/6000.6/script-reference/unityengine/uielements/visualelement.md) for frequent color changes, such as a built-in style color being animated.                                                                                                                                                           |
| [DynamicPostProcessing](/engine/6000.6/script-reference/unityengine/uielements/usagehints/dynamicpostprocessing.md) | Optimizes rendering of a [VisualElement](/engine/6000.6/script-reference/unityengine/uielements/visualelement.md) that is subject to have post-processing effects (filters) applied to it.                                                                                                                                                             |
| [DynamicTransform](/engine/6000.6/script-reference/unityengine/uielements/usagehints/dynamictransform.md)           | Optimizes rendering of a [VisualElement](/engine/6000.6/script-reference/unityengine/uielements/visualelement.md) for frequent position and transformation changes.                                                                                                                                                                                    |
| [GroupTransform](/engine/6000.6/script-reference/unityengine/uielements/usagehints/grouptransform.md)               | Optimizes rendering of a [VisualElement](/engine/6000.6/script-reference/unityengine/uielements/visualelement.md) that changes its transformation and position frequently, and has many descendants that have their hints set to [UsageHints.DynamicTransform](/engine/6000.6/script-reference/unityengine/uielements/usagehints/dynamictransform.md). |
| [LargePixelCoverage](/engine/6000.6/script-reference/unityengine/uielements/usagehints/largepixelcoverage.md)       | Optimizes rendering of a VisuaElement that covers a large pixel area on screen.                                                                                                                                                                                                                                                                        |
| [MaskContainer](/engine/6000.6/script-reference/unityengine/uielements/usagehints/maskcontainer.md)                 | Optimizes rendering of a [VisualElement](/engine/6000.6/script-reference/unityengine/uielements/visualelement.md) that has multiple descendants with nested masks.                                                                                                                                                                                     |
| [None](/engine/6000.6/script-reference/unityengine/uielements/usagehints/none.md)                                   | No particular hints applicable.                                                                                                                                                                                                                                                                                                                        |
