Fix incorrect syntax when using NodePath for property paths

This commit is contained in:
blujai831 2025-03-29 11:45:10 -07:00
parent f2559cac32
commit 74e4e47a68
No known key found for this signature in database
GPG Key ID: DDC31A0363AA5E66
1 changed files with 4 additions and 4 deletions

View File

@ -372,17 +372,17 @@ func _on_state_changed(state_name: StringName) -> void:
# Save collider and etc properties to the stack # Save collider and etc properties to the stack
# and overwrite them with those provided by the state profile. # and overwrite them with those provided by the state profile.
_property_save_restore_stack.push({ _property_save_restore_stack.push({
^".:_collider:rotation": ( ^"_collider:rotation": (
Vector3.RIGHT*PI/2.0 Vector3.RIGHT*PI/2.0
if _current_state_properties.collider_horizontal if _current_state_properties.collider_horizontal
else Vector3.ZERO else Vector3.ZERO
), ),
^".:height": ( ^"height": (
2.0*_current_state_properties.collider_radius 2.0*_current_state_properties.collider_radius
if _current_state_properties.collider_horizontal if _current_state_properties.collider_horizontal
else _current_state_properties.collider_length else _current_state_properties.collider_length
), ),
^".:width": ( ^"width": (
_current_state_properties.collider_length _current_state_properties.collider_length
if _current_state_properties.collider_horizontal if _current_state_properties.collider_horizontal
else 2.0*_current_state_properties.collider_radius 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) _do_standard_motion(delta)
var target_displacement := ( var target_displacement := (
0.5*height*Vector3.UP + 0.5*height*Vector3.UP +
width*Vector3.FORWARD 0.75*width*Vector3.FORWARD
) )
if !_carrying: if !_carrying:
force_change_state(&'idle') force_change_state(&'idle')