DisableExample.cs 209 B

12345678910
  1. using UnityEngine;
  2. public class DisableExample : MonoBehaviour
  3. {
  4. [Disable] public string hoge = "hoge";
  5. [Disable] public int fuga = 1;
  6. [Disable] public AudioType audioType = AudioType.ACC;
  7. }