From 37f1186c797a175e7c6732823991c1cc144c5aae Mon Sep 17 00:00:00 2001 From: Antoine Pilote Date: Tue, 5 Sep 2023 21:49:21 -0400 Subject: [PATCH] Added Bone label --- Editor/src/Windows/EditorInterface.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Editor/src/Windows/EditorInterface.cpp b/Editor/src/Windows/EditorInterface.cpp index 67f42993..1175d027 100644 --- a/Editor/src/Windows/EditorInterface.cpp +++ b/Editor/src/Windows/EditorInterface.cpp @@ -1649,6 +1649,11 @@ namespace Nuake { entityTypeName = "Character Controller"; } + if (entity.HasComponent()) + { + entityTypeName = "Bone"; + } + if (entity.HasComponent()) { entityTypeName = "Prefab";