gd: broken weapon throw

This commit is contained in:
2025-06-06 23:21:56 +02:00
parent 579b523a37
commit c2a8b939e8
5 changed files with 72 additions and 16 deletions

View File

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