Add airship level

Fix default spawn issue
TODO: Fix issue with spawning when loading from other scenes
This commit is contained in:
2022-08-30 01:48:01 -07:00
parent 82bf43452b
commit 7a891a45f1
22 changed files with 3856 additions and 316 deletions

View File

@@ -1,6 +1,6 @@
using UnityEngine;
public class PlayerSpawnController : MonoBehaviour
public partial class PlayerSpawnController : MonoBehaviour
{
public GameObject Player;
[SerializeField]
@@ -14,5 +14,4 @@ public class PlayerSpawnController : MonoBehaviour
Player.transform.position = _spawnLocation.transform.position;
Player.transform.rotation = _spawnLocation.transform.rotation;
}
}