From 850107944c9fd95462e15c3a5212ad38e3c1a546 Mon Sep 17 00:00:00 2001 From: Chandler Cox Date: Thu, 15 Aug 2024 21:44:40 -0500 Subject: [PATCH] Hide parameters for animated model on end play. --- .../Dedicated/AnimatedModelEditor.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/Source/Editor/CustomEditors/Dedicated/AnimatedModelEditor.cs b/Source/Editor/CustomEditors/Dedicated/AnimatedModelEditor.cs index 6f1ac91d0..8a6508346 100644 --- a/Source/Editor/CustomEditors/Dedicated/AnimatedModelEditor.cs +++ b/Source/Editor/CustomEditors/Dedicated/AnimatedModelEditor.cs @@ -1,5 +1,7 @@ // Copyright (c) 2012-2024 Wojciech Figat. All rights reserved. +using System; +using FlaxEditor.CustomEditors.Elements; using FlaxEditor.Surface; using FlaxEngine; @@ -33,5 +35,21 @@ namespace FlaxEditor.CustomEditors.Dedicated Values); } } + + /// + public override void Refresh() + { + base.Refresh(); + + // Check if parameters group is still showing if not in play mode and hide it. + if (!Editor.Instance.StateMachine.IsPlayMode) + { + var group = Layout.Children.Find(x => x is GroupElement g && g.Panel.HeaderText.Equals("Parameters", StringComparison.Ordinal)); + if (group != null) + { + RebuildLayout(); + } + } + } } }