From c89615f3bcf57a3ffefe7c02b4a95f8c0ec62802 Mon Sep 17 00:00:00 2001 From: Nitwel Date: Thu, 30 Nov 2023 23:41:20 +0100 Subject: [PATCH] fix bug when selecting unimplemented entities --- .../godot-xr-tools/hands/animations/left/hand_blend_tree.tres | 2 +- .../hands/animations/right/hand_blend_tree.tres | 2 +- content/ui/menu/edit/edit_menu.gd | 4 ++++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/addons/godot-xr-tools/hands/animations/left/hand_blend_tree.tres b/addons/godot-xr-tools/hands/animations/left/hand_blend_tree.tres index 6e05f8b..a97fbf0 100644 --- a/addons/godot-xr-tools/hands/animations/left/hand_blend_tree.tres +++ b/addons/godot-xr-tools/hands/animations/left/hand_blend_tree.tres @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ec74b5b5948e76d01115d7ff959610515e97aca1c42870f36b4a747f2dc4cb70 +oid sha256:b55738edba8fcdaab47c5e40cf4b900b10c86ea67f9d40dc041f84f4e76ec484 size 2416 diff --git a/addons/godot-xr-tools/hands/animations/right/hand_blend_tree.tres b/addons/godot-xr-tools/hands/animations/right/hand_blend_tree.tres index 71ad03f..5bfabca 100644 --- a/addons/godot-xr-tools/hands/animations/right/hand_blend_tree.tres +++ b/addons/godot-xr-tools/hands/animations/right/hand_blend_tree.tres @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:46cdd3222390fdf4b7e6f591958bbf30944df088a71cab919ba54a49ace2baf8 +oid sha256:3a3e64d9a45c8ab58180b00eae7ed8e306c22686656fca4ed854b87283ed4c09 size 2424 diff --git a/content/ui/menu/edit/edit_menu.gd b/content/ui/menu/edit/edit_menu.gd index 404417b..1dd855a 100644 --- a/content/ui/menu/edit/edit_menu.gd +++ b/content/ui/menu/edit/edit_menu.gd @@ -149,6 +149,10 @@ func _on_entity_click(entity_name): AudioPlayer.play_effect("spawn") var entity = EntityCreator.create_entity(type, entity_name) + + if entity == null: + return + entity.set_position(global_position) get_node("/root").add_child(entity)