refactor: simplify instantiate prefabs (#41)

This commit is contained in:
Théo LUDWIG 2025-03-03 11:55:22 +01:00 committed by GitHub
parent f305cd6c1f
commit 7fd8691033
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 8 additions and 25 deletions

View File

@ -4,12 +4,12 @@
"order": 2,
"elements": [
{
"type": 1,
"type": "Spike",
"x": -6.684000015258789,
"y": -2.8970000743865969
},
{
"type": 1,
"type": "Spike",
"x": -3.059999942779541,
"y": -2.930000066757202
}

View File

@ -4,12 +4,12 @@
"order": 1,
"elements": [
{
"type": 0,
"type": "Obstacle",
"x": -6.684000015258789,
"y": -2.8970000743865969
},
{
"type": 1,
"type": "Spike",
"x": -3.059999942779541,
"y": -2.930000066757202
}

View File

@ -6,13 +6,7 @@ using System.Runtime.Serialization;
[System.Serializable]
public class LevelElement
{
public enum Type
{
Obstacle = 0,
Spike = 1
}
public Type type;
public string type;
public float x;
public float y;
}

View File

@ -5,17 +5,10 @@ public class LevelLoader : MonoBehaviour
{
public LevelsLoader levelsLoader;
public AudioSource audioSource;
public GameObject obstaclePrefab;
public GameObject spikePrefab;
public GameObject winnerWall;
private GameObject GetPrefab(LevelElement.Type type)
private GameObject GetPrefab(string type)
{
if (type == LevelElement.Type.Spike)
{
return spikePrefab;
}
return obstaclePrefab;
return Resources.Load<GameObject>("Prefabs/" + type);
}
private void LoadAudio()
@ -26,10 +19,6 @@ public class LevelLoader : MonoBehaviour
private void LoadElements()
{
obstaclePrefab = Resources.Load<GameObject>("Prefabs/Obstacle");
spikePrefab = Resources.Load<GameObject>("Prefabs/Spike");
winnerWall = Resources.Load<GameObject>("Prefabs/WinnerWall");
Level current = levelsLoader.levelCurrent;
foreach (var element in current.elements)
{
@ -43,7 +32,7 @@ public class LevelLoader : MonoBehaviour
{
lastX += lastElement.x;
}
Instantiate(winnerWall, new Vector3(lastX, 0, 0), Quaternion.Euler(0, 0, 90));
Instantiate(GetPrefab("WinnerWall"), new Vector3(lastX, 0, 0), Quaternion.Euler(0, 0, 90));
}
public void Start()