123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using UnityEditor.Rendering.Universal.ShaderGUI;
- using UnityEngine;
- using UnityEngine.Rendering.Universal;
- namespace UnityEditor.Rendering.Universal
- {
- class MaterialModificationProcessor : AssetModificationProcessor
- {
- static void OnWillCreateAsset(string asset)
- {
- if (!asset.ToLowerInvariant().EndsWith(".mat"))
- {
- return;
- }
- MaterialPostprocessor.s_CreatedAssets.Add(asset);
- }
- }
- class MaterialReimporter : Editor
- {
- static bool s_NeedToCheckProjSettingExistence = true;
- static void ReimportAllMaterials()
- {
- string[] guids = AssetDatabase.FindAssets("t:material", null);
- // There can be several materials subAssets per guid ( ie : FBX files ), remove duplicate guids.
- var distinctGuids = guids.Distinct();
- int materialIdx = 0;
- int totalMaterials = distinctGuids.Count();
- foreach (var asset in distinctGuids)
- {
- materialIdx++;
- var path = AssetDatabase.GUIDToAssetPath(asset);
- EditorUtility.DisplayProgressBar("Material Upgrader re-import", string.Format("({0} of {1}) {2}", materialIdx, totalMaterials, path), (float)materialIdx / (float)totalMaterials);
- AssetDatabase.ImportAsset(path);
- }
- EditorUtility.ClearProgressBar();
- MaterialPostprocessor.s_NeedsSavingAssets = true;
- }
- [InitializeOnLoadMethod]
- static void RegisterUpgraderReimport()
- {
- EditorApplication.update += () =>
- {
- if (Time.renderedFrameCount > 0)
- {
- bool fileExist = true;
- // We check the file existence only once to avoid IO operations every frame.
- if (s_NeedToCheckProjSettingExistence)
- {
- fileExist = System.IO.File.Exists(UniversalProjectSettings.filePath);
- s_NeedToCheckProjSettingExistence = false;
- }
- //This method is called at opening and when URP package change (update of manifest.json)
- var curUpgradeVersion = UniversalProjectSettings.materialVersionForUpgrade;
- if (curUpgradeVersion != MaterialPostprocessor.k_Upgraders.Length)
- {
- string commandLineOptions = Environment.CommandLine;
- bool inTestSuite = commandLineOptions.Contains("-testResults");
- if (!inTestSuite && fileExist)
- {
- EditorUtility.DisplayDialog("URP Material upgrade", "The Materials in your Project were created using an older version of the Universal Render Pipeline (URP)." +
- " Unity must upgrade them to be compatible with your current version of URP. \n" +
- " Unity will re-import all of the Materials in your project, save the upgraded Materials to disk, and check them out in source control if needed.\n" +
- " Please see the Material upgrade guide in the URP documentation for more information.", "Ok");
- }
- ReimportAllMaterials();
- }
- if (MaterialPostprocessor.s_NeedsSavingAssets)
- MaterialPostprocessor.SaveAssetsToDisk();
- }
- };
- }
- }
- class MaterialPostprocessor : AssetPostprocessor
- {
- public static List<string> s_CreatedAssets = new List<string>();
- internal static List<string> s_ImportedAssetThatNeedSaving = new List<string>();
- internal static bool s_NeedsSavingAssets = false;
- internal static readonly Action<Material, ShaderPathID>[] k_Upgraders = { UpgradeV1 };
- static internal void SaveAssetsToDisk()
- {
- string commandLineOptions = System.Environment.CommandLine;
- bool inTestSuite = commandLineOptions.Contains("-testResults");
- if (inTestSuite)
- return;
- foreach (var asset in s_ImportedAssetThatNeedSaving)
- {
- AssetDatabase.MakeEditable(asset);
- }
- AssetDatabase.SaveAssets();
- //to prevent data loss, only update the saved version if user applied change and assets are written to
- UniversalProjectSettings.materialVersionForUpgrade = k_Upgraders.Length;
- s_ImportedAssetThatNeedSaving.Clear();
- s_NeedsSavingAssets = false;
- }
- static void OnPostprocessAllAssets(string[] importedAssets, string[] deletedAssets, string[] movedAssets, string[] movedFromAssetPaths)
- {
- var upgradeLog = "UniversalRP Material log:";
- var upgradeCount = 0;
- foreach (var asset in importedAssets)
- {
- if (!asset.ToLowerInvariant().EndsWith(".mat"))
- continue;
- var material = (Material)AssetDatabase.LoadAssetAtPath(asset, typeof(Material));
- if (!ShaderUtils.IsLWShader(material.shader))
- continue;
- ShaderPathID id = ShaderUtils.GetEnumFromPath(material.shader.name);
- var wasUpgraded = false;
- var assetVersions = AssetDatabase.LoadAllAssetsAtPath(asset);
- AssetVersion assetVersion = null;
- foreach (var subAsset in assetVersions)
- {
- if(subAsset.GetType() == typeof(AssetVersion))
- assetVersion = subAsset as AssetVersion;
- }
- var debug = "\n" + material.name;
- if (!assetVersion)
- {
- wasUpgraded = true;
- assetVersion = ScriptableObject.CreateInstance<AssetVersion>();
- if (s_CreatedAssets.Contains(asset))
- {
- assetVersion.version = k_Upgraders.Length;
- s_CreatedAssets.Remove(asset);
- InitializeLatest(material, id);
- }
- else
- {
- assetVersion.version = 0;
- }
- assetVersion.hideFlags = HideFlags.HideInHierarchy | HideFlags.HideInInspector | HideFlags.NotEditable;
- AssetDatabase.AddObjectToAsset(assetVersion, asset);
- debug += " initialized.";
- }
- while (assetVersion.version < k_Upgraders.Length)
- {
- k_Upgraders[assetVersion.version](material, id);
- debug += $" upgrading:v{assetVersion.version} to v{assetVersion.version + 1}";
- assetVersion.version++;
- wasUpgraded = true;
- }
- if (wasUpgraded)
- {
- upgradeLog += debug;
- upgradeCount++;
- EditorUtility.SetDirty(assetVersion);
- s_ImportedAssetThatNeedSaving.Add(asset);
- s_NeedsSavingAssets = true;
- }
- }
- }
- static void InitializeLatest(Material material, ShaderPathID id)
- {
- }
- static void UpgradeV1(Material material, ShaderPathID shaderID)
- {
- var shaderPath = ShaderUtils.GetShaderPath(shaderID);
- var upgradeFlag = MaterialUpgrader.UpgradeFlags.LogMessageWhenNoUpgraderFound;
- switch (shaderID)
- {
- case ShaderPathID.Unlit:
- MaterialUpgrader.Upgrade(material, new UnlitUpdaterV1(shaderPath), upgradeFlag);
- UnlitShader.SetMaterialKeywords(material);
- break;
- case ShaderPathID.SimpleLit:
- MaterialUpgrader.Upgrade(material, new SimpleLitUpdaterV1(shaderPath), upgradeFlag);
- SimpleLitShader.SetMaterialKeywords(material, SimpleLitGUI.SetMaterialKeywords);
- break;
- case ShaderPathID.Lit:
- MaterialUpgrader.Upgrade(material, new LitUpdaterV1(shaderPath), upgradeFlag);
- LitShader.SetMaterialKeywords(material, LitGUI.SetMaterialKeywords);
- break;
- case ShaderPathID.ParticlesLit:
- MaterialUpgrader.Upgrade(material, new ParticleUpdaterV1(shaderPath), upgradeFlag);
- ParticlesLitShader.SetMaterialKeywords(material, LitGUI.SetMaterialKeywords, ParticleGUI.SetMaterialKeywords);
- break;
- case ShaderPathID.ParticlesSimpleLit:
- MaterialUpgrader.Upgrade(material, new ParticleUpdaterV1(shaderPath), upgradeFlag);
- ParticlesSimpleLitShader.SetMaterialKeywords(material, SimpleLitGUI.SetMaterialKeywords, ParticleGUI.SetMaterialKeywords);
- break;
- case ShaderPathID.ParticlesUnlit:
- MaterialUpgrader.Upgrade(material, new ParticleUpdaterV1(shaderPath), upgradeFlag);
- ParticlesUnlitShader.SetMaterialKeywords(material, null, ParticleGUI.SetMaterialKeywords);
- break;
- }
- }
- }
- // Upgraders v1
- #region UpgradersV1
- internal class LitUpdaterV1 : MaterialUpgrader
- {
- public static void UpdateLitDetails(Material material)
- {
- if (material == null)
- throw new ArgumentNullException("material");
- if(material.GetTexture("_MetallicGlossMap") || material.GetTexture("_SpecGlossMap") || material.GetFloat("_SmoothnessTextureChannel") >= 0.5f)
- material.SetFloat("_Smoothness", material.GetFloat("_GlossMapScale"));
- else
- material.SetFloat("_Smoothness", material.GetFloat("_Glossiness"));
- }
- public LitUpdaterV1(string oldShaderName)
- {
- if (oldShaderName == null)
- throw new ArgumentNullException("oldShaderName");
- string standardShaderPath = ShaderUtils.GetShaderPath(ShaderPathID.Lit);
- RenameShader(oldShaderName, standardShaderPath, UpdateLitDetails);
- RenameTexture("_MainTex", "_BaseMap");
- RenameColor("_Color", "_BaseColor");
- RenameFloat("_GlossyReflections", "_EnvironmentReflections");
- }
- }
- internal class UnlitUpdaterV1 : MaterialUpgrader
- {
- static Shader bakedLit = Shader.Find(ShaderUtils.GetShaderPath(ShaderPathID.BakedLit));
- public static void UpgradeToUnlit(Material material)
- {
- if (material == null)
- throw new ArgumentNullException("material");
- if (material.GetFloat("_SampleGI") != 0)
- {
- material.shader = bakedLit;
- material.EnableKeyword("_NORMALMAP");
- }
- }
- public UnlitUpdaterV1(string oldShaderName)
- {
- if (oldShaderName == null)
- throw new ArgumentNullException("oldShaderName");
- RenameShader(oldShaderName, ShaderUtils.GetShaderPath(ShaderPathID.Unlit), UpgradeToUnlit);
- RenameTexture("_MainTex", "_BaseMap");
- RenameColor("_Color", "_BaseColor");
- }
- }
- internal class SimpleLitUpdaterV1 : MaterialUpgrader
- {
- public SimpleLitUpdaterV1(string oldShaderName)
- {
- if (oldShaderName == null)
- throw new ArgumentNullException("oldShaderName");
- RenameShader(oldShaderName, ShaderUtils.GetShaderPath(ShaderPathID.SimpleLit), UpgradeToSimpleLit);
- RenameTexture("_MainTex", "_BaseMap");
- RenameColor("_Color", "_BaseColor");
- RenameFloat("_SpecSource", "_SpecularHighlights");
- RenameFloat("_Shininess", "_Smoothness");
- }
- public static void UpgradeToSimpleLit(Material material)
- {
- if (material == null)
- throw new ArgumentNullException("material");
- var smoothnessSource = 1 - (int)material.GetFloat("_GlossinessSource");
- material.SetFloat("_SmoothnessSource" ,smoothnessSource);
- if (material.GetTexture("_SpecGlossMap") == null)
- {
- var col = material.GetColor("_SpecColor");
- var colBase = material.GetColor("_Color");
- var smoothness = material.GetFloat("_Shininess");
- if (material.GetFloat("_Surface") == 0)
- {
- if (smoothnessSource == 1)
- colBase.a = smoothness;
- else
- col.a = smoothness;
- material.SetColor("_BaseColor", colBase);
- }
- material.SetColor("_BaseColor", colBase);
- material.SetColor("_SpecColor", col);
- }
- }
- }
- internal class ParticleUpdaterV1 : MaterialUpgrader
- {
- public ParticleUpdaterV1(string shaderName)
- {
- if (shaderName == null)
- throw new ArgumentNullException("oldShaderName");
- RenameShader(shaderName, shaderName, ParticleUpgrader.UpdateSurfaceBlendModes);
- RenameTexture("_MainTex", "_BaseMap");
- RenameColor("_Color", "_BaseColor");
- RenameFloat("_FlipbookMode", "_FlipbookBlending");
- switch (ShaderUtils.GetEnumFromPath(shaderName))
- {
- case ShaderPathID.ParticlesLit:
- RenameFloat("_Glossiness", "_Smoothness");
- break;
- case ShaderPathID.ParticlesSimpleLit:
- RenameFloat("_Glossiness", "_Smoothness");
- break;
- case ShaderPathID.ParticlesUnlit:
- break;
- }
- }
- }
- #endregion
- }
|