码迷,mamicode.com
首页 > 其他好文 > 详细

导入贴图操作:处理贴图MaxSize和Format

时间:2014-05-28 21:20:56      阅读:427      评论:0      收藏:0      [点我收藏+]

标签:style   c   class   blog   code   java   

bubuko.com,布布扣
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);
    }
}
bubuko.com,布布扣

 

导入贴图操作:处理贴图MaxSize和Format,布布扣,bubuko.com

导入贴图操作:处理贴图MaxSize和Format

标签:style   c   class   blog   code   java   

原文地址:http://www.cnblogs.com/softimagewht/p/3754716.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!