From ca7fa120eaedaf4bf390ef2955684998f786755b Mon Sep 17 00:00:00 2001 From: Eduard Urbach Date: Mon, 26 Feb 2024 23:55:30 +0100 Subject: [PATCH] Fixed incorrect reference --- client/Main.tscn | 2 ++ client/skill/SkillInstance.gd | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/client/Main.tscn b/client/Main.tscn index 798d9fc..12b9da0 100644 --- a/client/Main.tscn +++ b/client/Main.tscn @@ -88,6 +88,8 @@ autostart = true [node name="World" parent="." instance=ExtResource("13_sqmhj")] process_thread_group = 2 +process_thread_group_order = 0 +process_thread_messages = 0 [node name="Players" type="Node3D" parent="."] unique_name_in_owner = true diff --git a/client/skill/SkillInstance.gd b/client/skill/SkillInstance.gd index 0560517..5e119fe 100644 --- a/client/skill/SkillInstance.gd +++ b/client/skill/SkillInstance.gd @@ -14,6 +14,6 @@ func _enter_tree(): state.current = StateComponent.State.Skill func end(): - animation.player.speed_scale = 1.0 + animation.animations.speed_scale = 1.0 state.current = state.next_state() queue_free() \ No newline at end of file