From 74e4e47a685c90b7f84bb1d9e4ff83fde8928e1a Mon Sep 17 00:00:00 2001 From: blujai831 Date: Sat, 29 Mar 2025 11:45:10 -0700 Subject: [PATCH] Fix incorrect syntax when using NodePath for property paths --- characters/base/character.gd | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/characters/base/character.gd b/characters/base/character.gd index d843d9a..5e7d56c 100644 --- a/characters/base/character.gd +++ b/characters/base/character.gd @@ -372,17 +372,17 @@ func _on_state_changed(state_name: StringName) -> void: # Save collider and etc properties to the stack # and overwrite them with those provided by the state profile. _property_save_restore_stack.push({ - ^".:_collider:rotation": ( + ^"_collider:rotation": ( Vector3.RIGHT*PI/2.0 if _current_state_properties.collider_horizontal else Vector3.ZERO ), - ^".:height": ( + ^"height": ( 2.0*_current_state_properties.collider_radius if _current_state_properties.collider_horizontal else _current_state_properties.collider_length ), - ^".:width": ( + ^"width": ( _current_state_properties.collider_length if _current_state_properties.collider_horizontal else 2.0*_current_state_properties.collider_radius @@ -1232,7 +1232,7 @@ func _on_pick_up_state_tick(delta: float) -> void: _do_standard_motion(delta) var target_displacement := ( 0.5*height*Vector3.UP + - width*Vector3.FORWARD + 0.75*width*Vector3.FORWARD ) if !_carrying: force_change_state(&'idle')