IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 游戏开发 -> unity 导入自动强制修改资源属性 -> 正文阅读

[游戏开发]unity 导入自动强制修改资源属性

网上其实有很多了,我在这里就归拢一下

模型导入设置

using UnityEditor;

public class ModelImport : AssetPostprocessor
{
    //模型导入前设置
    void OnPreprocessModel()
    {
        ModelImporter modelimporter = assetImporter as ModelImporter;

        //所有都适用
        //Model
        modelimporter.importVisibility = false;
        modelimporter.importCameras = false;
        modelimporter.importLights = false;

        modelimporter.importNormals = ModelImporterNormals.Import;

        //Materials
        modelimporter.materialImportMode = ModelImporterMaterialImportMode.ImportViaMaterialDescription;
        modelimporter.materialLocation = ModelImporterMaterialLocation.InPrefab;
        modelimporter.SearchAndRemapMaterials(ModelImporterMaterialName.BasedOnMaterialName, ModelImporterMaterialSearch.RecursiveUp);


        // 判定路径可随意修改 --->"/***/"
        //场景模型
        if (assetImporter.assetPath.Contains("Assets/Art/Builds"))
        {
            //Model
            modelimporter.importBlendShapes = false;

            //Rig
            modelimporter.animationType = ModelImporterAnimationType.None;

            //Animation
            modelimporter.importAnimation = false;
        }

        //角色模型
        if (modelimporter.assetPath.Contains("Assets/Art/Role"))
        {
            //Model
            modelimporter.importBlendShapes = true;
        }
    }
}

关于模型的导入方法里有2个

OnPostprocessModel(GameObject)    //模型导入后执行
OnPreprocessModel() //模型导入前执行

贴图导入设置

using UnityEditor;

public class TextureImport : AssetPostprocessor
{
    void OnPreprocessTexture()
    {
        TextureImporter textureimporter = (TextureImporter)assetImporter;
        if (assetImporter.assetPath.Contains("Assets/Art"))
        {
            // 判定路径可随意修改 --->"/***/"
            textureimporter.mipmapEnabled = false;
            //textureimporter.maxTextureSize = 512;
        }
        //var importer = AssetImporter.GetAtPath("Assets/Arts/TileRes") as TextureImporter;

        //{
        //    TextureImporterPlatformSettings androidSetting = new TextureImporterPlatformSettings();
        //    {
        //        androidSetting.name = "Android";
        //        androidSetting.maxTextureSize = 512;
        //        androidSetting.overridden = true;
        //    }
        //    // ios设置
        //    TextureImporterPlatformSettings iosSetting = new TextureImporterPlatformSettings();
        //    {
        //        iosSetting.name = "iPhone";
        //        iosSetting.maxTextureSize = 512;
        //        iosSetting.overridden = true;
        //    }
        //    //
        //    importer.SetPlatformTextureSettings(androidSetting);
        //    importer.SetPlatformTextureSettings(iosSetting);
        //    importer.SaveAndReimport();
        //}
    }
}

注释部分是一些修改贴图压缩的设置
关于贴图的导入方法里有4个

OnPostprocessTexture(Texture2D)    //2D贴图导入后执行
OnPostprocessTexture(Texture2DArray)    //2DArray贴图导入后执行
OnPostprocessTexture(Texture3D)    //3D贴图导入后执行
OnPreprocessTexture() //贴图导入前执行

材质球导入设置

using System.Collections.Generic;
using System.Linq;
using UnityEditor;
using UnityEngine;

public class MaterialImport : AssetPostprocessor
{
    static List<string> discards = new List<string>     //如果监测到有这些shader,都会替换成上面的shader
        {
            "Standard",
            "Standard (Specular setup)",
            "Autodesk Interactive"
        };
    static void OnPostprocessAllAssets(string[] importedAssets, string[] deletedAssets, string[] movedAssets, string[] movedFromAssetPaths)
    {
        string path = "Assets"; //需要替换的路径
        foreach (string asset in importedAssets)
        {

            if (asset.EndsWith(".mat") && asset.Contains(path))
            {
                OnPostprocessMaterial(AssetDatabase.LoadAssetAtPath<Material>(asset));
            }
        }
    }

    static void OnPostprocessMaterial(Material material)
    {
        Shader shader = Shader.Find("Custom/SimulationPBR");

        if (discards.Any(s => s.Equals(material.shader.name)))
        {
            material.shader = shader;
            MatTools.CleanMat(material);
            AssetDatabase.SaveAssets();
        }
    }
}

我遇到了一些问题,我也没有查到怎么用。
OnPostprocessMaterial()描述上说:

将此函数添加到一个子类中,以在材质资源完成导入时获取通知。
使用此方法修改导入期间新创建的材质资源的属性。
此方法仅由 ModelImporter 调用。

但是实际上我怎么测试也没有找到何时调用OnPostprocessMaterial()所以我就用了OnPostprocessAllAssets(string[],string[],string[],string[])来监测所有的导入,路径里的文件格式决定哪个是材质球来进行引用shader的修改
我在导入材质设置里还用了一个自己写的方法MatTools.CleanMat(Material);
这个是用来清理材质球数据的,把Standard材质里多余的数据块清理掉,减少材质球文本块数量

using UnityEditor;
using UnityEngine;

public class MatTools : Editor
{
    [MenuItem("Assets/Tools/ClearMatProperties")]
    public static void ClearMatProperties()
    {
        UnityEngine.Object[] objs = Selection.GetFiltered(typeof(Material), SelectionMode.DeepAssets);
        for (int i = 0; i < objs.Length; ++i)
        {
            Material mat = objs[i] as Material;
            CleanMat(mat);
        }

        AssetDatabase.SaveAssets();
    }

    public static void CleanMat(Material material)
    {
        if (material)
        {
            SerializedObject psSource = new SerializedObject(material);
            SerializedProperty emissionProperty = psSource.FindProperty("m_SavedProperties");
            SerializedProperty texEnvs = emissionProperty.FindPropertyRelative("m_TexEnvs");
            SerializedProperty floats = emissionProperty.FindPropertyRelative("m_Floats");
            SerializedProperty colos = emissionProperty.FindPropertyRelative("m_Colors");

            CleanMaterialSerializedProperty(texEnvs, material);
            CleanMaterialSerializedProperty(floats, material);
            CleanMaterialSerializedProperty(colos, material);

            psSource.ApplyModifiedProperties();
            EditorUtility.SetDirty(material);
        }
    }

    /// <summary>
    /// true: has useless propeties
    /// </summary>
    /// <param name="property"></param>
    /// <param name="mat"></param>
    private static void CleanMaterialSerializedProperty(SerializedProperty property, Material mat)
    {
        for (int j = property.arraySize - 1; j >= 0; j--)
        {
            string propertyName = property.GetArrayElementAtIndex(j).displayName;
            //string propertyName = property.GetArrayElementAtIndex(j).FindPropertyRelative("first").FindPropertyRelative("name").stringValue;
            Debug.Log("Find property in serialized object : " + propertyName);
            if (!mat.HasProperty(propertyName))
            {
                if (propertyName.Equals("_MainTex"))
                {
                    //_MainTex是内建属性,是置空不删除,否则UITexture等控件在获取mat.maintexture的时候会报错
                    if (property.GetArrayElementAtIndex(j).FindPropertyRelative("second").FindPropertyRelative("m_Texture").objectReferenceValue != null)
                    {
                        property.GetArrayElementAtIndex(j).FindPropertyRelative("second").FindPropertyRelative("m_Texture").objectReferenceValue = null;
                        Debug.Log("Set _MainTex is null");
                    }
                }
                else
                {
                    property.DeleteArrayElementAtIndex(j);
                    Debug.Log("Delete property in serialized object : " + propertyName);
                }
            }
        }
    }

}

关于材质球的导入方法里有3个

//提供源材质。返回的材质将分配给渲染器。 如果返回 null,Unity 将使用其默认材质查找/生成方法来分配材质。 系统会在导入 sourceMaterial 之前直接从模型中生成 sourceMaterial,并在执行 OnAssignMaterial 之后立即将其销毁。
OnAssignMaterialModel(Material,Renderer)
//将此函数添加到一个子类中,以在材质资源完成导入时获取通知。使用此方法修改导入期间新创建的材质资源的属性。此方法仅由 ModelImporter 调用。
OnPostprocessMaterial(Material)
//将此函数添加到一个子类中,以在材质从 Model Importer 导入时接收通知。仅当 ModelImporter.UseMaterialDescriptionPostprocessor 为 true 时调用此函数。此函数提供在模型导入过程中对材质属性和动画的用户控制。MaterialDescription 结构包含在导入的文件中读取的所有材质数据,可用于填充参数中的材质和动画剪辑。
OnPreprocessMaterialDescription(MaterialDescription,Material, AnimationClip[])

但是网上我也没有搜到太多关于他们的用法,有会的大佬可以留言给我。等之后我哪天会了我也会更新。

  游戏开发 最新文章
6、英飞凌-AURIX-TC3XX: PWM实验之使用 GT
泛型自动装箱
CubeMax添加Rtthread操作系统 组件STM32F10
python多线程编程:如何优雅地关闭线程
数据类型隐式转换导致的阻塞
WebAPi实现多文件上传,并附带参数
from origin ‘null‘ has been blocked by
UE4 蓝图调用C++函数(附带项目工程)
Unity学习笔记(一)结构体的简单理解与应用
【Memory As a Programming Concept in C a
上一篇文章      下一篇文章      查看所有文章
加:2022-09-21 00:59:23  更:2022-09-21 00:59:31 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2025年1日历 -2025/1/17 3:45:42-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码