您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
16 行
334 B
16 行
334 B
using UnityEngine;
|
|
|
|
/// <summary>
|
|
/// This class is a base class which contains what is commun for all game scenes (Locations or Menus)
|
|
/// </summary>
|
|
|
|
public class GameSceneSO : ScriptableObject
|
|
{
|
|
[Header("Information")]
|
|
public string sceneName;
|
|
public string shortDescription;
|
|
|
|
[Header("Sounds")]
|
|
public AudioClip music;
|
|
|
|
}
|