From 6c26cbe9ba2b314a0a44fbce9512e7affb844ea9 Mon Sep 17 00:00:00 2001 From: Chandler Cox Date: Fri, 11 Nov 2022 17:11:25 -0600 Subject: [PATCH] Removed adding inherited types --- Source/Editor/Windows/ToolboxWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Editor/Windows/ToolboxWindow.cs b/Source/Editor/Windows/ToolboxWindow.cs index b522cbb2f..383e40e64 100644 --- a/Source/Editor/Windows/ToolboxWindow.cs +++ b/Source/Editor/Windows/ToolboxWindow.cs @@ -199,7 +199,7 @@ namespace FlaxEditor.Windows continue; ActorToolboxAttribute attribute = null; - foreach (var e in actorType.GetAttributes(true)) + foreach (var e in actorType.GetAttributes(false)) { if (e is ActorToolboxAttribute actorToolboxAttribute) {