Version: 2023.2

TextureImporter.ignoreMipmapLimit

切换到手册
public bool ignoreMipmapLimit ;

描述

Enable this flag for textures that should ignore mipmap limit settings.

This has no effect if the textureShape is not Texture2D or Texture2DArray. Also, this has no effect on textures without mipmaps. For additional information, see Texture2D.ignoreMipmapLimit and Texture2DArray.ignoreMipmapLimit. By default, an imported texture asset has mipmap limits enabled, and uses the global mipmap limit. If you imported a Texture2DArray asset in Unity version 2023.1 or earlier, the asset will continue to ignore mipmap limits to ensure consistent behavior when upgrading.

Note that imported textures have mipmap limits enabled by default. This code example demonstrates how to use an AssetPostprocessor to explicitly ignore the mipmap limit.

#if UNITY_EDITOR
using UnityEditor;

public class ExampleImporter : AssetPostprocessor { void OnPreprocessTexture() { if (assetPath.Contains("_IgnoreMipmapLimit")) { TextureImporter textureImporter = (TextureImporter)assetImporter; textureImporter.ignoreMipmapLimit = true; } } } #endif
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961