From 803af8113dd382be0e30542a2fd88730b3a236e8 Mon Sep 17 00:00:00 2001 From: mob-sakai <12690315+mob-sakai@users.noreply.github.com> Date: Fri, 21 Feb 2025 18:00:29 +0900 Subject: [PATCH] fix: component icons will no longer be displayed in the scene view --- .../Extensions/ComponentExtensions.cs | 2 +- Runtime/Internal/Utilities/Misc.cs | 60 ++++++++++++++++++- Runtime/UIParticle.cs | 1 + Runtime/UIParticle.cs.meta | 2 +- Runtime/UIParticleProjectSettings.cs | 1 + Runtime/UIParticleProjectSettings.cs.meta | 2 +- Runtime/UIParticleRenderer.cs | 1 + Runtime/UIParticleRenderer.cs.meta | 2 +- 8 files changed, 65 insertions(+), 6 deletions(-) diff --git a/Runtime/Internal/Extensions/ComponentExtensions.cs b/Runtime/Internal/Extensions/ComponentExtensions.cs index f14fc1d..e9ec78b 100644 --- a/Runtime/Internal/Extensions/ComponentExtensions.cs +++ b/Runtime/Internal/Extensions/ComponentExtensions.cs @@ -204,7 +204,7 @@ namespace Coffee.UIParticleInternal target.enabled = false; // Find MonoScript of the specified component. - foreach (var script in Resources.FindObjectsOfTypeAll()) + foreach (var script in MonoImporter.GetAllRuntimeMonoScripts()) { if (script.GetClass() != typeof(T)) { diff --git a/Runtime/Internal/Utilities/Misc.cs b/Runtime/Internal/Utilities/Misc.cs index 3f6fb47..4eac3d8 100644 --- a/Runtime/Internal/Utilities/Misc.cs +++ b/Runtime/Internal/Utilities/Misc.cs @@ -3,11 +3,16 @@ using System.Diagnostics; using UnityEditor; using UnityEngine; using Object = UnityEngine.Object; -#if UNITY_EDITOR && UNITY_2021_2_OR_NEWER +#if UNITY_EDITOR +using System.IO; +using System.Linq; +using System.Reflection; +#if UNITY_2021_2_OR_NEWER using UnityEditor.SceneManagement; -#elif UNITY_EDITOR +#else using UnityEditor.Experimental.SceneManagement; #endif +#endif namespace Coffee.UIParticleInternal { @@ -72,5 +77,56 @@ namespace Coffee.UIParticleInternal public static bool isBatchOrBuilding => Application.isBatchMode || BuildPipeline.isBuildingPlayer; #endif + + [Conditional("UNITY_EDITOR")] + public static void QueuePlayerLoopUpdate() + { +#if UNITY_EDITOR + if (!EditorApplication.isPlaying) + { + EditorApplication.QueuePlayerLoopUpdate(); + } +#endif + } } + +#if !UNITY_2021_2_OR_NEWER + [AttributeUsage(AttributeTargets.Class)] + [Conditional("UNITY_EDITOR")] + internal class IconAttribute : Attribute + { + private readonly string _path; + + public IconAttribute(string path) + { + _path = path; + } + +#if UNITY_EDITOR + private static Action s_SetIconForObject = typeof(EditorGUIUtility) + .GetMethod("SetIconForObject", BindingFlags.Static | BindingFlags.NonPublic) + .CreateDelegate(typeof(Action), null) as Action; + + [InitializeOnLoadMethod] + private static void InitializeOnLoadMethod() + { + if (Misc.isBatchOrBuilding) return; + + var types = TypeCache.GetTypesWithAttribute(); + var scripts = MonoImporter.GetAllRuntimeMonoScripts(); + foreach (var type in types) + { + var script = scripts.FirstOrDefault(x => x.GetClass() == type); + if (!script) continue; + + var path = type.GetCustomAttribute()?._path; + var icon = AssetDatabase.LoadAssetAtPath(path); + if (!icon) continue; + + s_SetIconForObject(script, icon); + } + } +#endif + } +#endif } diff --git a/Runtime/UIParticle.cs b/Runtime/UIParticle.cs index 354f4df..9caaf19 100644 --- a/Runtime/UIParticle.cs +++ b/Runtime/UIParticle.cs @@ -17,6 +17,7 @@ namespace Coffee.UIExtensions /// /// Render maskable and sortable particle effect ,without Camera, RenderTexture or Canvas. /// + [Icon("Packages/com.coffee.ui-particle/Icons/UIParticleIcon.png")] [ExecuteAlways] [RequireComponent(typeof(RectTransform))] [RequireComponent(typeof(CanvasRenderer))] diff --git a/Runtime/UIParticle.cs.meta b/Runtime/UIParticle.cs.meta index f076457..1dc794d 100644 --- a/Runtime/UIParticle.cs.meta +++ b/Runtime/UIParticle.cs.meta @@ -5,7 +5,7 @@ MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 - icon: {fileID: 2800000, guid: 5f0675613942149309588d556e33d990, type: 3} + icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant: diff --git a/Runtime/UIParticleProjectSettings.cs b/Runtime/UIParticleProjectSettings.cs index ab295d6..6da0170 100644 --- a/Runtime/UIParticleProjectSettings.cs +++ b/Runtime/UIParticleProjectSettings.cs @@ -5,6 +5,7 @@ using UnityEngine; namespace Coffee.UIExtensions { + [Icon("Packages/com.coffee.ui-particle/Icons/UIParticleIcon.png")] public class UIParticleProjectSettings : PreloadedProjectSettings { [Header("Setting")] diff --git a/Runtime/UIParticleProjectSettings.cs.meta b/Runtime/UIParticleProjectSettings.cs.meta index ca6db89..22e35af 100644 --- a/Runtime/UIParticleProjectSettings.cs.meta +++ b/Runtime/UIParticleProjectSettings.cs.meta @@ -5,7 +5,7 @@ MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 - icon: {fileID: 2800000, guid: 5f0675613942149309588d556e33d990, type: 3} + icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant: diff --git a/Runtime/UIParticleRenderer.cs b/Runtime/UIParticleRenderer.cs index fef02be..fc1ea73 100644 --- a/Runtime/UIParticleRenderer.cs +++ b/Runtime/UIParticleRenderer.cs @@ -15,6 +15,7 @@ using UnityEngine.UI; namespace Coffee.UIExtensions { + [Icon("Packages/com.coffee.ui-particle/Icons/UIParticleIcon.png")] [ExecuteAlways] [RequireComponent(typeof(RectTransform))] [RequireComponent(typeof(CanvasRenderer))] diff --git a/Runtime/UIParticleRenderer.cs.meta b/Runtime/UIParticleRenderer.cs.meta index 9896f40..2f3f29c 100644 --- a/Runtime/UIParticleRenderer.cs.meta +++ b/Runtime/UIParticleRenderer.cs.meta @@ -5,7 +5,7 @@ MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 - icon: {fileID: 2800000, guid: 5f0675613942149309588d556e33d990, type: 3} + icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant: