From 204ce4c77be722cbc5eb1d4ee4bb3a07405f0968 Mon Sep 17 00:00:00 2001 From: Rob Kelly Date: Fri, 11 Jul 2025 14:50:14 -0600 Subject: [PATCH] Stickers are added as children of the target object, not siblings --- src/equipment/sticker_pack/sticker_pack.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/equipment/sticker_pack/sticker_pack.gd b/src/equipment/sticker_pack/sticker_pack.gd index 7d8f297..74ffc15 100644 --- a/src/equipment/sticker_pack/sticker_pack.gd +++ b/src/equipment/sticker_pack/sticker_pack.gd @@ -70,7 +70,7 @@ func place_sticker() -> void: if not target: push_warning("Tried to apply decal to non-node target ", raycast.get_collider()) return - target.add_sibling(instance) + target.add_child(instance) instance.place( get_selected_sticker(), raycast.get_collision_point(),