fix: set a proper guard in case of no speaking animations and correct the upper limit check for the speaking index
This commit is contained in:
@@ -452,9 +452,11 @@ func turn_to(object: Node, wait: float = 0.0):
|
|||||||
|
|
||||||
# Play the talking animation
|
# Play the talking animation
|
||||||
func start_talking():
|
func start_talking():
|
||||||
if get_animation_player() and \
|
# Only start the speaking animation if we actually have them setup
|
||||||
_movable.last_dir >= 0 and \
|
if animations.speaks.size() > 0 \
|
||||||
_movable.last_dir <= animations.speaks.size():
|
and get_animation_player() \
|
||||||
|
and _movable.last_dir >= 0 \
|
||||||
|
and _movable.last_dir < animations.speaks.size():
|
||||||
if get_animation_player().is_playing():
|
if get_animation_player().is_playing():
|
||||||
get_animation_player().stop()
|
get_animation_player().stop()
|
||||||
get_animation_player().play(
|
get_animation_player().play(
|
||||||
|
|||||||
Reference in New Issue
Block a user