From bda879fd225c1df8f05211e0a9625161fc2dca17 Mon Sep 17 00:00:00 2001 From: StraToN Date: Wed, 23 Mar 2022 12:56:44 +0000 Subject: [PATCH] chore: storing version and changelog --- CHANGELOG.md | 9 +++++++++ addons/escoria-core/game/core-scripts/esc_item.gd | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3305a7d0..38b8eb21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [4.0.0-alpha.145](https://github.com/godot-escoria/escoria-demo-game/compare/v0.0.0...v4.0.0-alpha.145) (2022-03-23) + + +### Bug Fixes + +* Mirroed ESCItem's talk animation was conflicting with mirrored idle ([284cb0d](https://github.com/godot-escoria/escoria-demo-game/commit/284cb0d53969532f6e9338f8114f75cb927b2f42)) + + + ## [4.0.0-alpha.144](https://github.com/godot-escoria/escoria-demo-game/compare/v0.0.0...v4.0.0-alpha.144) (2022-03-23) diff --git a/addons/escoria-core/game/core-scripts/esc_item.gd b/addons/escoria-core/game/core-scripts/esc_item.gd index 6286bef9..cf2a8a70 100644 --- a/addons/escoria-core/game/core-scripts/esc_item.gd +++ b/addons/escoria-core/game/core-scripts/esc_item.gd @@ -501,7 +501,7 @@ func start_talking(): and _movable.last_dir >= 0 \ and _movable.last_dir < animations.speaks.size(): var animation_player = get_animation_player() - + if animation_player.is_playing(): animation_player.stop() @@ -522,7 +522,7 @@ func stop_talking(): and _movable.last_dir >= 0 \ and _movable.last_dir < animations.speaks.size(): var animation_player = get_animation_player() - + if animation_player.is_playing(): animation_player.stop()