首页 > 代码库 > 导入贴图操作:处理贴图MaxSize和Format
导入贴图操作:处理贴图MaxSize和Format
using UnityEngine; using System.Collections; using UnityEditor; public class ImportModflyTextures : AssetPostprocessor{ private uint m_Version = 0; public override uint GetVersion() {return m_Version;} public void OnPostprocessTexture(Texture2D tex){ TextureImporter importerTexture = (TextureImporter)assetImporter; if(importerTexture.DoesSourceTextureHaveAlpha() == true){ if(tex.width >= tex.height ) importerTexture.maxTextureSize = tex.width/2; else importerTexture.maxTextureSize = tex.height/2; importerTexture.textureFormat = TextureImporterFormat.AutomaticTruecolor; }else{ if(tex.width >= tex.height ) importerTexture.maxTextureSize = tex.width; else importerTexture.maxTextureSize = tex.height; importerTexture.textureFormat = TextureImporterFormat.AutomaticCompressed; } //AssetDatabase.Refresh(ImportAssetOptions.ForceUpdate); } }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。