Fix thrown item position

Start adding more floors
Testing Item Rescue
This commit is contained in:
2025-03-04 00:32:24 -08:00
parent 2da4b8958d
commit b733a30724
16 changed files with 1051 additions and 159 deletions

View File

@@ -168,7 +168,7 @@ public partial class Game : Node3D, IGame
var thrown = thrownScene.Instantiate<ThrownItem>();
thrown.ItemThatIsThrown = item;
AddChild(thrown);
thrown.Position += new Vector3(-0.5f, 1.5f, -0.5f);
thrown.Position += new Vector3(0, 1.5f, 0);
thrown.Throw();
}