Initial Commit
This commit is contained in:
parent
53eb92e9af
commit
270ab7d11f
15341 changed files with 700234 additions and 0 deletions
|
@ -0,0 +1,91 @@
|
|||
using System;
|
||||
using UnityEngine;
|
||||
using UnityEditor;
|
||||
using System.Collections;
|
||||
|
||||
|
||||
namespace TMPro.EditorUtilities
|
||||
{
|
||||
/// <summary>
|
||||
/// Asset post processor used to handle text assets changes.
|
||||
/// This includes tracking of changes to textures used by sprite assets as well as font assets potentially getting updated outside of the Unity editor.
|
||||
/// </summary>
|
||||
public class TMPro_TexturePostProcessor : AssetPostprocessor
|
||||
{
|
||||
private static void OnPostprocessAllAssets(string[] importedAssets, string[] deletedAssets, string[] movedAssets, string[] movedFromAssetPaths)
|
||||
{
|
||||
foreach (var asset in importedAssets)
|
||||
{
|
||||
// Return if imported asset path is outside of the project.
|
||||
if (asset.StartsWith("Assets/", StringComparison.OrdinalIgnoreCase) == false)
|
||||
continue;
|
||||
|
||||
if (AssetDatabase.GetMainAssetTypeAtPath(asset) == typeof(TMP_FontAsset))
|
||||
{
|
||||
TMP_FontAsset fontAsset = AssetDatabase.LoadAssetAtPath(asset, typeof(TMP_FontAsset)) as TMP_FontAsset;
|
||||
|
||||
if (fontAsset != null)
|
||||
TMP_EditorResourceManager.RegisterFontAssetForDefinitionRefresh(fontAsset);
|
||||
}
|
||||
|
||||
if (AssetDatabase.GetMainAssetTypeAtPath(asset) == typeof(Texture2D))
|
||||
{
|
||||
Texture2D tex = AssetDatabase.LoadAssetAtPath(asset, typeof(Texture2D)) as Texture2D;
|
||||
|
||||
if (tex != null)
|
||||
TMPro_EventManager.ON_SPRITE_ASSET_PROPERTY_CHANGED(true, tex);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//public class TMPro_PackageImportPostProcessor : AssetPostprocessor
|
||||
//{
|
||||
// static void OnPostprocessAllAssets(string[] importedAssets, string[] deletedAssets, string[] movedAssets, string[] movedFromAssetPaths)
|
||||
// {
|
||||
// for (int i = 0; i < importedAssets.Length; i++)
|
||||
// {
|
||||
// if (importedAssets[i].Contains("TextMesh Pro/Resources/TMP Settings.asset"))
|
||||
// {
|
||||
// Debug.Log("New TMP Settings file was just imported.");
|
||||
|
||||
// // TMP Settings file was just re-imported.
|
||||
// // Check if project already contains
|
||||
// }
|
||||
|
||||
|
||||
// if (importedAssets[i].Contains("com.unity.TextMeshPro/Examples"))
|
||||
// {
|
||||
// //Debug.Log("New TMP Examples folder was just imported.");
|
||||
// }
|
||||
|
||||
// //Debug.Log("[" + importedAssets[i] + "] was just imported.");
|
||||
// }
|
||||
|
||||
|
||||
|
||||
// //for (int i = 0; i < deletedAssets.Length; i++)
|
||||
// //{
|
||||
// // if (deletedAssets[i] == "Assets/TextMesh Pro")
|
||||
// // {
|
||||
// // //Debug.Log("Asset [" + deletedAssets[i] + "] has been deleted.");
|
||||
// // string currentBuildSettings = PlayerSettings.GetScriptingDefineSymbolsForGroup(EditorUserBuildSettings.selectedBuildTargetGroup);
|
||||
|
||||
// // //Check for and inject TMP_PRESENT
|
||||
// // if (currentBuildSettings.Contains("TMP_PRESENT;"))
|
||||
// // {
|
||||
// // currentBuildSettings = currentBuildSettings.Replace("TMP_PRESENT;", "");
|
||||
|
||||
// // PlayerSettings.SetScriptingDefineSymbolsForGroup(EditorUserBuildSettings.selectedBuildTargetGroup, currentBuildSettings);
|
||||
// // }
|
||||
// // else if (currentBuildSettings.Contains("TMP_PRESENT"))
|
||||
// // {
|
||||
// // currentBuildSettings = currentBuildSettings.Replace("TMP_PRESENT", "");
|
||||
|
||||
// // PlayerSettings.SetScriptingDefineSymbolsForGroup(EditorUserBuildSettings.selectedBuildTargetGroup, currentBuildSettings);
|
||||
// // }
|
||||
// // }
|
||||
// //}
|
||||
// }
|
||||
//}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue