# TextureMipmapLimitGroups

> Script interface for texture mipmap limit groups.

## Definition

* **Type:** Class
* **Namespace:** [UnityEngine](/engine/6000.7/script-reference/unityengine.md)
* **Assembly:** UnityEngine.CoreModule

```csharp
public static class TextureMipmapLimitGroups
```

## Remarks

Use this class to add, remove or detect texture mipmap limit groups in C#.

Additional Resources: [TextureMipmapLimitSettings](/engine/6000.7/script-reference/unityengine/texturemipmaplimitsettings.md), [QualitySettings.globalTextureMipmapLimit](/engine/6000.7/script-reference/unityengine/qualitysettings/globaltexturemipmaplimit.md).

## Static Methods

| Method                                                                                             | Description                                                                                                                                                            |
| -------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [CreateGroup](/engine/6000.7/script-reference/unityengine/texturemipmaplimitgroups/creategroup.md) | (Editor Only) Attempts to create a texture mipmap limit group with the indicated `groupName`.                                                                          |
| [GetGroups](/engine/6000.7/script-reference/unityengine/texturemipmaplimitgroups/getgroups.md)     | Retrieves a string array containing the name of all texture mipmap limit groups available in the project.                                                              |
| [HasGroup](/engine/6000.7/script-reference/unityengine/texturemipmaplimitgroups/hasgroup.md)       | Checks whether a texture mipmap limit group with the indicated `groupName` exists in the project. This operation fails and throws an exception if `groupName` is null. |
| [RemoveGroup](/engine/6000.7/script-reference/unityengine/texturemipmaplimitgroups/removegroup.md) | (Editor Only) Attempts to remove a texture mipmap limit group with the indicated `groupName`.                                                                          |
