|
做项目的时候遇到一个问题,美术同学把fbx文件导入Unity后,模型的材质球和动画片段都包含在fbx文件中。如果要重新给模型增加材质球,需要对每个模型部件分别添加,非常麻烦。
查找资料后发现在fpx Import Settings里可以设置材质球的映射,但如果一个个材质球都靠导入时手动设置,工作量也很大。在网上翻了一圈以后参考别人的插件自己写了一版提取材质球和动画片段的功能。
一键提取材质球
脚本需要放在Editor文件夹内
using System.IO;
using UnityEngine;
using UnityEditor;
public class ExtractMaterials : EditorWindow
{
[MenuItem("Assets/一键生成材质球", false, 1)]
static void CreateMaterialsFromFBX()
{
UnityEngine.Object[] gameObjects = Selection.objects;
string[] strs = Selection.assetGUIDs;
if (gameObjects.Length > 0)
{
int gameNum = gameObjects.Length;
for(int i = 0; i < gameNum; i++)
{
string assetPath = AssetDatabase.GUIDToAssetPath(strs);
//Debug.Log(assetPath); //具体到fbx的路径
string materialFolder = Path.GetDirectoryName(assetPath) + &#34;/Materials&#34;;
// 如果不存在该文件夹则创建一个新的
if (!AssetDatabase.IsValidFolder(materialFolder))
{
AssetDatabase.CreateFolder(Path.GetDirectoryName(assetPath), &#34;Materials&#34;);
}
// 获取assetPath下所有资源
Object[] assets = AssetDatabase.LoadAllAssetsAtPath(assetPath);
bool isCreate = false;
foreach (Object item in assets)
{
if (typeof(Material) == item?.GetType())//找到fbx里面的材质
{
Debug.Log(&#34;找到材质文件:&#34; + item);
string path = System.IO.Path.Combine(materialFolder, item.name) + &#34;.mat&#34;;//提取后的名字
if(System.IO.File.Exists(path)){
Debug.Log(&#34;该材质已存在&#34;);
var assetImporter = AssetImporter.GetAtPath(assetPath);
var clone = AssetDatabase.LoadAssetAtPath(path, typeof(Object));
assetImporter.AddRemap(new AssetImporter.SourceAssetIdentifier(item), clone);
AssetDatabase.WriteImportSettingsIfDirty(assetPath);
AssetDatabase.ImportAsset(assetPath, ImportAssetOptions.ForceUpdate);
}
else{
path = AssetDatabase.GenerateUniqueAssetPath(path);
string value = AssetDatabase.ExtractAsset(item, path);
if (string.IsNullOrEmpty(value))
{
AssetDatabase.WriteImportSettingsIfDirty(assetPath);
AssetDatabase.ImportAsset(assetPath, ImportAssetOptions.ForceUpdate);
isCreate = true;
}
}
}
}
AssetDatabase.Refresh();
if (isCreate)
Debug.Log(&#34;自动创建材质球成功:&#34; + materialFolder);
}
}
else
{
Debug.LogError(&#34;请选中需要一键生成材质球的模型&#34;);
}
}
}
使用方法:右键选中需要提取材质球的fbx文件(可多选),选择”一键生成材质球“,在同个文件夹中会出现Material文件夹,包含提取出来的材质球文件。名字相同的材质球会自动匹配到,不会重复生成。
一键提取动画片段
脚本需要放在Editor文件夹内
using System.IO;
using UnityEngine;
using System.Collections.Generic;
using UnityEditor;
public class ExtractAnim : MonoBehaviour
{
[MenuItem(&#34;Assets/一键生成动画片段&#34;, false, 1)]
static void CreateAnimFromFBX()
{
UnityEngine.Object[] gameObjects = Selection.objects;
string[] strs = Selection.assetGUIDs;
if (gameObjects.Length > 0)
{
int gameNum = gameObjects.Length;
for(int i = 0; i < gameNum; i++)
{
string fbxName = gameObjects.name;
string assetPath = AssetDatabase.GUIDToAssetPath(strs);
//Debug.Log(assetPath); //具体到fbx的路径
string animFolder = Path.GetDirectoryName(assetPath) + &#34;/Anim&#34;;
// 如果不存在该文件夹则创建一个新的
if (!AssetDatabase.IsValidFolder(animFolder))
{
AssetDatabase.CreateFolder(Path.GetDirectoryName(assetPath), &#34;Anim&#34;);
}
// 获取assetPath下所有资源
Object[] assets = AssetDatabase.LoadAllAssetsAtPath(assetPath);
bool isCreate = false;
List<Object> animation_clip_list = new List<Object>();
foreach (Object item in assets)
{
if (typeof(AnimationClip) == item?.GetType())//找到fbx里面的动画
{
Debug.Log(&#34;找到动画片段:&#34; + item);
if(!item.name.StartsWith(&#34;__preview&#34;)){
animation_clip_list.Add(item);
}
}
}
foreach(AnimationClip animation_clip in animation_clip_list){
Object new_animation_clip = new AnimationClip();
EditorUtility.CopySerialized(animation_clip, new_animation_clip);
new_animation_clip.name = Path.GetFileNameWithoutExtension(assetPath);
string animation_path = Path.Combine(animFolder, new_animation_clip.name + &#34;.anim&#34;);
Debug.Log(animation_path);
AssetDatabase.CreateAsset(new_animation_clip, animation_path);
isCreate = true;
}
//AssetDatabase.DeleteAsset(assetPath);
AssetDatabase.Refresh();
if (isCreate)
Debug.Log(&#34;自动创建动画片段成功:&#34; + animFolder);
else
Debug.Log(&#34;未自动创建动画片段。&#34;);
}
}
else
{
Debug.LogError(&#34;请选中需要一键提取动画片段的模型&#34;);
}
}
}
使用方法:右键选中需要提取材质球的fbx文件(可多选),选择”一键生成动画片段“,在同个文件夹中会出现Anim文件夹,包含提取出来的动画片段文件。
参考资料
Unity官方文档:AssetImporter.AddRemap
Unity Editor - 一键导出模型内置材质、设置模型设置、修改Shader
Unity动画TA:导入fbx时直接分解出AnimationClip |
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有账号?立即注册
×
|