Changed default tween channel arbitration mode to REPLACE.

This commit is contained in:
blujai831 2024-01-06 18:41:58 -08:00
parent 50e13dbd44
commit ebae0648c8
No known key found for this signature in database
GPG Key ID: DDC31A0363AA5E66
1 changed files with 1 additions and 1 deletions

View File

@ -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