From d2ab30e7a69bfe7efda63ae75812207377917bd3 Mon Sep 17 00:00:00 2001
From: miepzerino <o.skotnik@gmail.com>
Date: Sun, 30 Mar 2025 18:50:27 +0000
Subject: [PATCH] Merge branch 'Flexalon-UI-Layouts' into develop

---
 Assets/Flexalon/Editor/Core/FlexalonResultEditor.cs |   17 +++++++++++++++++
 1 files changed, 17 insertions(+), 0 deletions(-)

diff --git a/Assets/Flexalon/Editor/Core/FlexalonResultEditor.cs b/Assets/Flexalon/Editor/Core/FlexalonResultEditor.cs
new file mode 100644
index 0000000..e2021ae
--- /dev/null
+++ b/Assets/Flexalon/Editor/Core/FlexalonResultEditor.cs
@@ -0,0 +1,17 @@
+using UnityEditor;
+using UnityEngine;
+
+namespace Flexalon.Editor
+{
+    [CustomEditor(typeof(FlexalonResult))]
+    public class FlexalonResultEditor : UnityEditor.Editor
+    {
+        void OnEnable()
+        {
+            foreach (var target in targets)
+            {
+                target.hideFlags = HideFlags.HideInInspector;
+            }
+        }
+    }
+}
\ No newline at end of file

--
Gitblit v1.9.3