Fix incorrect syntax when using NodePath for property paths
This commit is contained in:
parent
f2559cac32
commit
74e4e47a68
|
@ -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')
|
||||||
|
|
Loading…
Reference in New Issue