From ebae0648c8b591b4004c5f38f013404d6e5cab4e Mon Sep 17 00:00:00 2001 From: blujai831 Date: Sat, 6 Jan 2024 18:41:58 -0800 Subject: [PATCH] Changed default tween channel arbitration mode to REPLACE. --- util/TweenChannel.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/TweenChannel.gd b/util/TweenChannel.gd index 8eca74f..f676c96 100644 --- a/util/TweenChannel.gd +++ b/util/TweenChannel.gd @@ -19,7 +19,7 @@ enum ArbitrationMode { ## and it changes while the call is yielding, then the in-progress call ## still will not return until its turn, as though arbitration_mode ## were still YIELD. -var arbitration_mode := ArbitrationMode.YIELD +var arbitration_mode := ArbitrationMode.REPLACE ## Tween currently running if any, else null. var current_tween: Tween = null