DynamicAtlasFilters
Options to enable or disable filters for the dynamic atlas.
Read time 1 minuteLast updated 13 days ago
Definition
- Type: Enum
- Namespace: UnityEngine.UIElements
- Assembly: UnityEngine.UIElementsModule
[Flags]public enum DynamicAtlasFilters
Remarks
Filters exclude individual textures from the texture atlas based on specific criteria.
Fields
Value | Description |
|---|---|
| ColorSpace | Excludes textures whose color space does not match the color space of the atlas. |
| FilterMode | Excludes textures that use a filter mode that the atlas does not support. |
| Format | Excludes textures that, because of their format, would lose precision, or be truncated when the system adds them to the atlas. |
| None | No filtering is performed. |
| Readability | Excludes readable textures. |
| Size | Excludes textures whose size exceeds the maximum sub-texture size specified in the dynamic atlas settings. |