Add scene transitions, lose sanity points

This commit is contained in:
2022-08-20 19:04:34 -07:00
parent 349c4dc4b6
commit 886b957039
21 changed files with 1178 additions and 1861 deletions

View File

@@ -13,7 +13,6 @@ public class PlayerSpawnController : MonoBehaviour
Player = Instantiate(_playerPrefab);
Player.transform.position = _spawnLocation.transform.position;
Player.transform.rotation = _spawnLocation.transform.rotation;
DontDestroyOnLoad(Player);
}
}