浏览代码

Changed Level to Location

/main
Unknown 4 年前
当前提交
9bcfa8f8
共有 3 个文件被更改,包括 9 次插入9 次删除
  1. 9
      UOP1_Project/Assets/Scripts/Scriptable Objects/SceneManagement/Location.cs
  2. 9
      UOP1_Project/Assets/Scripts/Scriptable Objects/SceneManagement/Level.cs
  3. 0
      /UOP1_Project/Assets/Scripts/Scriptable Objects/SceneManagement/Location.cs.meta

9
UOP1_Project/Assets/Scripts/Scriptable Objects/SceneManagement/Location.cs


using UnityEngine;
[CreateAssetMenu(fileName = "NewLocation", menuName = "Scene Data/Location")]
public class Location : GameScene
{
//Settings specific to level only
[Header("Location specific")]
public int enemiesCount;
}

9
UOP1_Project/Assets/Scripts/Scriptable Objects/SceneManagement/Level.cs


using UnityEngine;
[CreateAssetMenu(fileName = "NewLevel", menuName = "Scene Data/Level")]
public class Level : GameScene
{
//Settings specific to level only
[Header("Level specific")]
public int enemiesCount;
}

/UOP1_Project/Assets/Scripts/Scriptable Objects/SceneManagement/Level.cs.meta → /UOP1_Project/Assets/Scripts/Scriptable Objects/SceneManagement/Location.cs.meta

正在加载...
取消
保存