Added NavMeshVolume component

This commit is contained in:
Antoine Pilote
2024-07-24 20:58:48 -04:00
parent fbc4ee1900
commit f15894920f
8 changed files with 135 additions and 1 deletions

View File

@@ -129,6 +129,7 @@ void EditorSelectionPanel::DrawEntity(Nuake::Entity entity)
mMeshColliderPanel.Draw(entity);
mCharacterControllerPanel.Draw(entity);
mAudioEmitterPanel.Draw(entity);
mNavMeshVolumePanel.Draw(entity);
using namespace Nuake;
@@ -169,7 +170,7 @@ void EditorSelectionPanel::DrawEntity(Nuake::Entity entity)
ImGui::Separator();
MenuItemComponent("Audio Emitter", AudioEmitterComponent);
ImGui::Separator();
MenuItemComponent("Path", AudioEmitterComponent);
MenuItemComponent("NavMesh Volume", NavMeshVolumeComponent);
ImGui::EndPopup();
}