Various additions and fixes

This commit is contained in:
2025-02-11 02:39:31 -08:00
parent 3e42ee4914
commit 556f12de1e
1517 changed files with 13624 additions and 12282 deletions

View File

@@ -304,7 +304,7 @@ public partial class Player : CharacterBody3D, IPlayer
var itemScene = GD.Load<PackedScene>("res://src/items/throwable/ThrowableItem.tscn");
var throwItem = itemScene.Instantiate<ThrowableItem>();
GetTree().Root.AddChildEx(throwItem);
throwItem.GlobalPosition = CurrentPosition;
throwItem.GlobalPosition = CurrentPosition + new Vector3(0, 3.5f, 0);
throwItem.GlobalRotation = GlobalRotation;
}