CreateGroup(string)
(Editor Only) Attempts to create a texture mipmap limit group with the indicated groupName.
Read time 1 minuteLast updated 13 days ago
Definition
- Type: Method
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public static void CreateGroup(string groupName)
Parameters
Name of the new texture mipmap limit group.
Remarks
This operation fails and throws an exception if is null/empty or a texture mipmap limit group with the same name already exists. If no other group with the same name exists, Unity creates the new group across all quality levels. By default, the new group mirrors the global texture mipmap limit.
groupNameIf Unity creates the new group successfully, textures previously bound to stop using QualitySettings.globalTextureMipmapLimit as a fallback and begin respecting the new group's TextureMipmapLimitSettings instead.
groupName#if UNITY_EDITORusing UnityEngine;using UnityEditor;public class Example : MonoBehaviour{ // Attempts to create a texture mipmap limit group with the name "MyGroup", as long as it doesn't exist already. [MenuItem("MyMenu/Create MipmapLimitGroup")] static void CreateMyGroup() { const string textureMipmapLimitGroup = "MyGroup"; if (!TextureMipmapLimitGroups.HasGroup(textureMipmapLimitGroup)) { TextureMipmapLimitGroups.CreateGroup(textureMipmapLimitGroup); } else { Debug.LogError($"Cannot create new texture mipmap limit group '{textureMipmapLimitGroup}', it already exists!"); } }}#endif
Additional Resources: TextureMipmapLimitGroups.HasGroup, TextureMipmapLimitGroups.RemoveGroup.