BlueObject.cs 281 B

123456789
  1. using UnityEngine;
  2. [CreateAssetMenu(fileName ="PrefabsAsset",menuName ="ScriptableObject/BluePrefabs",order = 1 )]
  3. public class BlueObject : ScriptableObject
  4. {
  5. //可以包含更多的数据,信息
  6. public GameObject WarningPopUp;
  7. public string NetErrorText;
  8. }