当前位置:网站首页>Unity map auto match material tool map auto add to shader tool shader match map tool map made by substance painter auto match shader tool
Unity map auto match material tool map auto add to shader tool shader match map tool map made by substance painter auto match shader tool
2022-07-07 12:06:00 【Tang Zhe】
Powerful Unity Editor Extension
Some of you might ask : The model is made , Decompress the map first in the model settings , Just unzip the material ?
Certainly. , But now the problem is that the model has no mapping , Maps are in SP Made in , The exported maps are all separate maps , It will not be directly bound to the model
All in all , It's no problem for you to paste one by one on the shader , I think it's too painful , I have to post a model … Post a der.
Editor extension can solve many manual problems .
Look at the effect :
The shader will automatically match the map
Pay attention when matching maps :
The map name must be : The model name _ Shader name _ Map type
Property introduction
- Model path : Dragging the model will automatically identify the path
- Map suffix : similar _Albedo perhaps _Occlusion, Some students like to name it like this ,AL,AO, So open it and customize
- Export shaders : The directory where the model exists will be automatically created Material Folder , Models that do not unzip materials will unzip materials to this folder
- Set the material : Automatically match the map according to the name of the model and shader
SP Export process :
file - Export map - The configuration needs to be named like this
among :
- $project It is the present. SP Project name ( In less than )
- $mesh Is the model name
- $textureSet Is the shader name
Code Introduction :
Attribute here, you can modify the default suffix
[SerializeField]
public string m_Albedo = "_Albedo", m_Metallic = "_Metallic", m_NormalMap = "_Normal", m_HeightMap = "_Height", m_OcclusionMap = "_Occlusion";
Set the name rule here :objName + “_” + mat.name + m_Albedo, Can be modified by yourself
void setMaterialShader(string path)
{
Material mat = AssetDatabase.LoadAssetAtPath<Material>(path);
string[] allPath = GetObjPath("Texture2D");
for (int i = 0, len = allPath.Length; i < len; i++)
{
string filePath = AssetDatabase.GUIDToAssetPath(allPath[i]);
Texture2D t = AssetDatabase.LoadAssetAtPath<Texture2D>(filePath);
string objName = Path.GetFileName(modelPath);
objName = objName.Substring(0, objName.Length - 4);
if (t.name == objName + "_" + mat.name + m_Albedo)
{
mat.SetTexture(Albedo, t);
}
else if (t.name == objName + "_" + mat.name + m_HeightMap)
{
mat.SetTexture(HeightMap, t);
}
else if (t.name == objName + "_" + mat.name + m_Metallic)
{
mat.SetTexture(Metallic, t);
}
else if (t.name == objName + "_" + mat.name + m_NormalMap)
{
mat.SetTexture(NormalMap, t);
}
else if (t.name == objName + "_" + mat.name + m_OcclusionMap)
{
mat.SetTexture(OcclusionMap, t);
}
else
{
Debug.Log(mat.name+" Shaders cannot match :" + t.name);
}
}
}
Complete code :
This code inherits EditorWindow
So we have to put it in Editor Under the folder , Make revolving door And Camera controller Is the same , All use Editor Extension Technology
using System.IO;
using UnityEngine;
using UnityEditor;
public class MatchinMaterial_Editor : EditorWindow
{
public string modelPath = "Assets";
public Rect modelRect;
public string Albedo = "_MainTex";
public string Metallic = "_MetallicGlossMap";
public string NormalMap = "_BumpMap";
public string HeightMap = "_ParallaxMap";
public string OcclusionMap = "_OcclusionMap";
private static MatchinMaterial_Editor _window;
[SerializeField]
public string m_Albedo = "_Albedo", m_Metallic = "_Metallic", m_NormalMap = "_Normal", m_HeightMap = "_Height", m_OcclusionMap = "_Occlusion";
[MenuItem("Tools/ Material matching ")]
public static void showWindow()
{
Rect wr = new Rect(0, 0, 300, 300);
// true Indicates that you cannot dock
_window = (MatchinMaterial_Editor)GetWindowWithRect(typeof(MatchinMaterial_Editor), wr, true, " Material matching ");
_window.Show();
}
public void OnGUI()
{
EditorGUILayout.Space();
EditorGUILayout.LabelField(" Model path ( Drag the folder here with the mouse )");
EditorGUILayout.Space();
GUI.SetNextControlName("input1");// Set the name of the next control
modelRect = EditorGUILayout.GetControlRect();
modelPath = EditorGUI.TextField(modelRect, modelPath);
EditorGUILayout.Space();
m_Albedo = EditorGUILayout.TextField("Albedo Picture suffix ", m_Albedo);
m_Metallic = EditorGUILayout.TextField("Metallic Picture suffix ", m_Metallic);
m_NormalMap = EditorGUILayout.TextField("NormalMap Picture suffix ", m_NormalMap);
m_HeightMap = EditorGUILayout.TextField("HeightMap Picture suffix ", m_HeightMap);
m_OcclusionMap = EditorGUILayout.TextField("OcclusionMap Picture suffix ", m_OcclusionMap);
DragFolder();
EditorGUILayout.Space();
// Export materials
if (GUILayout.Button(" Export shaders "))
{
ForEachModels();
}
EditorGUILayout.Space();
if (GUILayout.Button(" Set the material "))
{
ForEachMaterials();
}
}
/// <summary>
/// Get the drag file
/// </summary>
void DragFolder()
{
// The mouse is in the current window
if (mouseOverWindow == this)
{
// Drag into the window without releasing the mouse
if (Event.current.type == EventType.DragUpdated)
{
DragAndDrop.visualMode = DragAndDropVisualMode.Generic;// Change the appearance of the mouse
// Judgment area
if (modelRect.Contains(Event.current.mousePosition))
GUI.FocusControl("input1");
}
// Drag into the window and release the mouse
else if (Event.current.type == EventType.DragExited)
{
string dragPath = string.Join("", DragAndDrop.paths);
// Judgment area
if (modelRect.Contains(Event.current.mousePosition))
this.modelPath = dragPath;
// Remove focus ( Otherwise GUI Not refresh )
GUI.FocusControl(null);
}
}
}
/// <summary>
/// Export materials
/// </summary>
void ForEachModels()
{
string[] allPath = AssetDatabase.FindAssets("t:GameObject", new string[] {
modelPath });
//Debug.Log("-- allPath: " + allPath.Length);
for (int i = 0, len = allPath.Length; i < len; i++)
{
string filePath = AssetDatabase.GUIDToAssetPath(allPath[i]);
// Set up the model
ExtractMaterialsFromFBX(filePath);
}
// If you choose FBX Model file
if (allPath.Length == 0)
{
if (Path.GetExtension(modelPath) == ".fbx")
{
ExtractMaterialsFromFBX(modelPath);
}
else
{
Debug.LogError(" The currently selected directory cannot be found FBX file : " + this.modelPath);
}
}
}
/// <summary>
/// Export shaders
/// </summary>
/// <param name="assetPath"></param>
public void ExtractMaterialsFromFBX(string assetPath)
{
// Material catalog
string materialFolder = Path.GetDirectoryName(assetPath) + "/Material";
//Debug.Log(assetPath);
// If the folder does not exist, create a new
if (!AssetDatabase.IsValidFolder(materialFolder))
AssetDatabase.CreateFolder(Path.GetDirectoryName(assetPath), "Material");
// obtain assetPath All resources under .
Object[] assets = AssetDatabase.LoadAllAssetsAtPath(assetPath);
foreach (Object item in assets)
{
if (item.GetType() == typeof(Material))
{
string path = System.IO.Path.Combine(materialFolder, item.name) + ".mat";
// Create a new unique path for the resource .
path = AssetDatabase.GenerateUniqueAssetPath(path);
// By importing resources ( for example ,FBX file ) Extract external resources , In object ( for example , texture of material ) Create this resource in .
string value = AssetDatabase.ExtractAsset(item, path);
// Successfully extracted ( If Unity Successfully extracted resources , Then return an empty string )
if (string.IsNullOrEmpty(value))
{
AssetDatabase.WriteImportSettingsIfDirty(assetPath);
AssetDatabase.ImportAsset(assetPath, ImportAssetOptions.ForceUpdate);
Debug.Log(Path.GetFileName(assetPath) + " Of Material Export succeeded !!");
}
}
}
}
/// <summary>
/// Get all shaders
/// </summary>
void ForEachMaterials()
{
string[] allPath = GetObjPath("Material");
for (int i = 0, len = allPath.Length; i < len; i++)
{
string filePath = AssetDatabase.GUIDToAssetPath(allPath[i]);
setMaterialShader(filePath);
}
Debug.Log("Material Shader Setup completed , altogether : " + allPath.Length + " individual ");
}
void setMaterialShader(string path)
{
Material mat = AssetDatabase.LoadAssetAtPath<Material>(path);
string[] allPath = GetObjPath("Texture2D");
for (int i = 0, len = allPath.Length; i < len; i++)
{
string filePath = AssetDatabase.GUIDToAssetPath(allPath[i]);
Texture2D t = AssetDatabase.LoadAssetAtPath<Texture2D>(filePath);
string objName = Path.GetFileName(modelPath);
objName = objName.Substring(0, objName.Length - 4);
if (t.name == objName + "_" + mat.name + m_Albedo)
{
mat.SetTexture(Albedo, t);
}
else if (t.name == objName + "_" + mat.name + m_HeightMap)
{
mat.SetTexture(HeightMap, t);
}
else if (t.name == objName + "_" + mat.name + m_Metallic)
{
mat.SetTexture(Metallic, t);
}
else if (t.name == objName + "_" + mat.name + m_NormalMap)
{
mat.SetTexture(NormalMap, t);
}
else if (t.name == objName + "_" + mat.name + m_OcclusionMap)
{
mat.SetTexture(OcclusionMap, t);
}
else
{
Debug.Log(mat.name+" Shaders cannot match :" + t.name);
}
}
}
string[] GetObjPath(string mType)
{
//string path = Path.GetDirectoryName(modelPath) + "/Material";// Get the file directory of this object , Specific to the Material file
string path = Path.GetDirectoryName(modelPath);// Get the file directory of this object
return AssetDatabase.FindAssets("t:"+ mType, new string[] {
path });// Look under this file "t:Material" This file
}
}
This code needs Demo demonstration ?
边栏推荐
- Introduction to three methods of anti red domain name generation
- Completion report of communication software development and Application
- SwiftUI Swift 内功之 Swift 中使用不透明类型的 5 个技巧
- CMU15445 (Fall 2019) 之 Project#2 - Hash Table 详解
- Let digital manage inventory
- 超标量处理器设计 姚永斌 第8章 指令发射 摘录
- 什么是局域网域名?如何解析?
- [full stack plan - programming language C] basic introductory knowledge
- 小红书微服务框架及治理等云原生业务架构演进案例
- @Bean与@Component用在同一个类上,会怎么样?
猜你喜欢
Improve application security through nonce field of play integrity API
5V串口接3.3V单片机串口怎么搞?
UP Meta—Web3.0世界创新型元宇宙金融协议
What development models did you know during the interview? Just read this one
Explore cloud database of cloud services together
Detailed explanation of debezium architecture of debezium synchronization
18 basic introduction to divider separator component of fleet tutorial (tutorial includes source code)
Solve the problem that vscode can only open two tabs
[texture feature extraction] LBP image texture feature extraction based on MATLAB local binary mode [including Matlab source code 1931]
Matlab implementation of Huffman coding and decoding with GUI interface
随机推荐
[shortest circuit] acwing 1127 Sweet butter (heap optimized dijsktra or SPFA)
从工具升级为解决方案,有赞的新站位指向新价值
Common locking table processing methods in Oracle
[filter tracking] strapdown inertial navigation simulation based on MATLAB [including Matlab source code 1935]
【最短路】ACwing 1127. 香甜的黄油(堆优化的dijsktra或spfa)
[full stack plan - programming language C] basic introductory knowledge
盘点JS判断空对象的几大方法
相机标定(1): 单目相机标定及张正友标定基本原理
What is a LAN domain name? How to parse?
Let digital manage inventory
@Bean与@Component用在同一个类上,会怎么样?
问题:先后键入字符串和字符,结果发生冲突
What are the top-level domain names? How is it classified?
Fleet tutorial 19 introduction to verticaldivider separator component Foundation (tutorial includes source code)
千人规模互联网公司研发效能成功之路
Summed up 200 Classic machine learning interview questions (with reference answers)
SwiftUI Swift 内功之 Swift 中使用不透明类型的 5 个技巧
[filter tracking] comparison between EKF and UKF based on MATLAB extended Kalman filter [including Matlab source code 1933]
超标量处理器设计 姚永斌 第8章 指令发射 摘录
[filter tracking] strapdown inertial navigation pure inertial navigation solution matlab implementation