feat: time dilation and indicator

This commit is contained in:
2025-07-11 10:34:20 +02:00
parent e3d10840c9
commit 98b6537fdd
4 changed files with 67 additions and 7 deletions

View File

@ -28,6 +28,7 @@ public partial class TweenQueueSystem : Node3D
var (location, duration) = inputs;
var tween = GetTree().CreateTween();
tween.SetParallel(true);
tween.TweenProperty(_tweenObject, "global_position", location, duration);
tween.TweenCallback(_tweenEndedCallback);
_isTweening = true;