diff options
Diffstat (limited to 'modules/openxr/editor')
11 files changed, 14 insertions, 7 deletions
diff --git a/modules/openxr/editor/openxr_action_editor.h b/modules/openxr/editor/openxr_action_editor.h index 765b3ef378..11d1fd657a 100644 --- a/modules/openxr/editor/openxr_action_editor.h +++ b/modules/openxr/editor/openxr_action_editor.h @@ -32,6 +32,7 @@ #define OPENXR_ACTION_EDITOR_H #include "../action_map/openxr_action.h" + #include "editor/editor_undo_redo_manager.h" #include "scene/gui/box_container.h" #include "scene/gui/button.h" diff --git a/modules/openxr/editor/openxr_action_map_editor.h b/modules/openxr/editor/openxr_action_map_editor.h index a04bae4a6e..22e8853c8c 100644 --- a/modules/openxr/editor/openxr_action_map_editor.h +++ b/modules/openxr/editor/openxr_action_map_editor.h @@ -32,9 +32,9 @@ #define OPENXR_ACTION_MAP_EDITOR_H #include "../action_map/openxr_action_map.h" -#include "../editor/openxr_action_set_editor.h" -#include "../editor/openxr_interaction_profile_editor.h" -#include "../editor/openxr_select_interaction_profile_dialog.h" +#include "openxr_action_set_editor.h" +#include "openxr_interaction_profile_editor.h" +#include "openxr_select_interaction_profile_dialog.h" #include "editor/editor_plugin.h" #include "editor/editor_undo_redo_manager.h" diff --git a/modules/openxr/editor/openxr_action_set_editor.cpp b/modules/openxr/editor/openxr_action_set_editor.cpp index bcb0f5f8b1..6a63720257 100644 --- a/modules/openxr/editor/openxr_action_set_editor.cpp +++ b/modules/openxr/editor/openxr_action_set_editor.cpp @@ -29,6 +29,7 @@ /**************************************************************************/ #include "openxr_action_set_editor.h" + #include "openxr_action_editor.h" void OpenXRActionSetEditor::_bind_methods() { diff --git a/modules/openxr/editor/openxr_action_set_editor.h b/modules/openxr/editor/openxr_action_set_editor.h index 129f800abe..3261f3a29e 100644 --- a/modules/openxr/editor/openxr_action_set_editor.h +++ b/modules/openxr/editor/openxr_action_set_editor.h @@ -34,6 +34,7 @@ #include "../action_map/openxr_action_map.h" #include "../action_map/openxr_action_set.h" #include "openxr_action_editor.h" + #include "scene/gui/box_container.h" #include "scene/gui/button.h" #include "scene/gui/line_edit.h" diff --git a/modules/openxr/editor/openxr_editor_plugin.cpp b/modules/openxr/editor/openxr_editor_plugin.cpp index 75becf035a..51ebbcf44a 100644 --- a/modules/openxr/editor/openxr_editor_plugin.cpp +++ b/modules/openxr/editor/openxr_editor_plugin.cpp @@ -31,6 +31,7 @@ #include "openxr_editor_plugin.h" #include "../action_map/openxr_action_map.h" + #include "editor/editor_node.h" void OpenXREditorPlugin::edit(Object *p_node) { diff --git a/modules/openxr/editor/openxr_editor_plugin.h b/modules/openxr/editor/openxr_editor_plugin.h index ef75385233..9764f8fe21 100644 --- a/modules/openxr/editor/openxr_editor_plugin.h +++ b/modules/openxr/editor/openxr_editor_plugin.h @@ -31,9 +31,10 @@ #ifndef OPENXR_EDITOR_PLUGIN_H #define OPENXR_EDITOR_PLUGIN_H -#include "editor/editor_plugin.h" #include "openxr_action_map_editor.h" +#include "editor/editor_plugin.h" + class OpenXREditorPlugin : public EditorPlugin { GDCLASS(OpenXREditorPlugin, EditorPlugin); diff --git a/modules/openxr/editor/openxr_interaction_profile_editor.cpp b/modules/openxr/editor/openxr_interaction_profile_editor.cpp index 6a848dd430..1f63399ee7 100644 --- a/modules/openxr/editor/openxr_interaction_profile_editor.cpp +++ b/modules/openxr/editor/openxr_interaction_profile_editor.cpp @@ -29,6 +29,7 @@ /**************************************************************************/ #include "openxr_interaction_profile_editor.h" + #include "scene/gui/box_container.h" #include "scene/gui/button.h" #include "scene/gui/label.h" diff --git a/modules/openxr/editor/openxr_interaction_profile_editor.h b/modules/openxr/editor/openxr_interaction_profile_editor.h index fa25a000a9..b9b3fbd81d 100644 --- a/modules/openxr/editor/openxr_interaction_profile_editor.h +++ b/modules/openxr/editor/openxr_interaction_profile_editor.h @@ -34,11 +34,11 @@ #include "../action_map/openxr_action_map.h" #include "../action_map/openxr_interaction_profile.h" #include "../action_map/openxr_interaction_profile_meta_data.h" +#include "openxr_select_action_dialog.h" + #include "editor/editor_undo_redo_manager.h" #include "scene/gui/scroll_container.h" -#include "openxr_select_action_dialog.h" - class OpenXRInteractionProfileEditorBase : public ScrollContainer { GDCLASS(OpenXRInteractionProfileEditorBase, ScrollContainer); diff --git a/modules/openxr/editor/openxr_select_action_dialog.cpp b/modules/openxr/editor/openxr_select_action_dialog.cpp index b7dd7d5def..8eec54be63 100644 --- a/modules/openxr/editor/openxr_select_action_dialog.cpp +++ b/modules/openxr/editor/openxr_select_action_dialog.cpp @@ -29,7 +29,6 @@ /**************************************************************************/ #include "openxr_select_action_dialog.h" -#include "editor/editor_node.h" void OpenXRSelectActionDialog::_bind_methods() { ADD_SIGNAL(MethodInfo("action_selected", PropertyInfo(Variant::STRING, "action"))); diff --git a/modules/openxr/editor/openxr_select_action_dialog.h b/modules/openxr/editor/openxr_select_action_dialog.h index 4d8eddf3e5..cf7a7a1939 100644 --- a/modules/openxr/editor/openxr_select_action_dialog.h +++ b/modules/openxr/editor/openxr_select_action_dialog.h @@ -32,6 +32,7 @@ #define OPENXR_SELECT_ACTION_DIALOG_H #include "../action_map/openxr_action_map.h" + #include "scene/gui/box_container.h" #include "scene/gui/button.h" #include "scene/gui/dialogs.h" diff --git a/modules/openxr/editor/openxr_select_interaction_profile_dialog.h b/modules/openxr/editor/openxr_select_interaction_profile_dialog.h index 4826a23a78..aae0368f67 100644 --- a/modules/openxr/editor/openxr_select_interaction_profile_dialog.h +++ b/modules/openxr/editor/openxr_select_interaction_profile_dialog.h @@ -32,6 +32,7 @@ #define OPENXR_SELECT_INTERACTION_PROFILE_DIALOG_H #include "../action_map/openxr_interaction_profile_meta_data.h" + #include "scene/gui/box_container.h" #include "scene/gui/button.h" #include "scene/gui/dialogs.h" |