summaryrefslogtreecommitdiffstats
path: root/modules/openxr
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-07-11 23:16:51 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-07-11 23:16:51 +0200
commitb6434f2ac7a1c22c057cc28022fce6e7b965536d (patch)
treeea2f09f3f20b02c5e333fe250f3f0941169308bc /modules/openxr
parent383a6e4ef285fddcb0e1cbe28a20332c7e5a815b (diff)
parent95b72631aa78fe5da45a911b59cab2d6f2b76c49 (diff)
downloadredot-engine-b6434f2ac7a1c22c057cc28022fce6e7b965536d.tar.gz
Merge pull request #94158 from BastiaanOlij/fix_action_map
OpenXR: Couple of small fixes on the action map
Diffstat (limited to 'modules/openxr')
-rw-r--r--modules/openxr/action_map/openxr_interaction_profile.cpp9
-rw-r--r--modules/openxr/editor/openxr_action_map_editor.cpp12
2 files changed, 15 insertions, 6 deletions
diff --git a/modules/openxr/action_map/openxr_interaction_profile.cpp b/modules/openxr/action_map/openxr_interaction_profile.cpp
index 2579697d05..1266457113 100644
--- a/modules/openxr/action_map/openxr_interaction_profile.cpp
+++ b/modules/openxr/action_map/openxr_interaction_profile.cpp
@@ -127,9 +127,12 @@ Ref<OpenXRInteractionProfile> OpenXRInteractionProfile::new_profile(const char *
void OpenXRInteractionProfile::set_interaction_profile_path(const String p_input_profile_path) {
OpenXRInteractionProfileMetadata *pmd = OpenXRInteractionProfileMetadata::get_singleton();
- ERR_FAIL_NULL(pmd);
-
- interaction_profile_path = pmd->check_profile_name(p_input_profile_path);
+ if (pmd) {
+ interaction_profile_path = pmd->check_profile_name(p_input_profile_path);
+ } else {
+ // OpenXR module not enabled, ignore checks.
+ interaction_profile_path = p_input_profile_path;
+ }
emit_changed();
}
diff --git a/modules/openxr/editor/openxr_action_map_editor.cpp b/modules/openxr/editor/openxr_action_map_editor.cpp
index 937973f388..51e6c3e277 100644
--- a/modules/openxr/editor/openxr_action_map_editor.cpp
+++ b/modules/openxr/editor/openxr_action_map_editor.cpp
@@ -248,7 +248,7 @@ void OpenXRActionMapEditor::_on_interaction_profile_selected(const String p_path
void OpenXRActionMapEditor::_load_action_map(const String p_path, bool p_create_new_if_missing) {
Error err = OK;
- action_map = ResourceLoader::load(p_path, "", ResourceFormatLoader::CACHE_MODE_IGNORE, &err);
+ action_map = ResourceLoader::load(p_path, "", ResourceFormatLoader::CACHE_MODE_REUSE, &err);
if (err != OK) {
if ((err == ERR_FILE_NOT_FOUND || err == ERR_CANT_OPEN) && p_create_new_if_missing) {
action_map.instantiate();
@@ -257,10 +257,16 @@ void OpenXRActionMapEditor::_load_action_map(const String p_path, bool p_create_
// Save it immediately
err = ResourceSaver::save(action_map, p_path);
if (err != OK) {
- // show warning but continue
+ // Show warning but continue.
EditorNode::get_singleton()->show_warning(vformat(TTR("Error saving file %s: %s"), edited_path, error_names[err]));
+ } else {
+ // Reload so it's cached.
+ action_map = ResourceLoader::load(p_path, "", ResourceFormatLoader::CACHE_MODE_REUSE, &err);
+ if (err != OK) {
+ // Show warning but continue.
+ EditorNode::get_singleton()->show_warning(vformat(TTR("Error reloading file %s: %s"), edited_path, error_names[err]));
+ }
}
-
} else {
EditorNode::get_singleton()->show_warning(vformat(TTR("Error loading %s: %s."), edited_path, error_names[err]));