Пример #1
0
 void Awake()
 {
     if (instance == null)
     {
         instance = this;
     }
 }
Пример #2
0
 void Start()
 {
     if (instance == null)
     {
         instance = this;
     }
     green          = new Color(32, 132, 0, 255);
     red            = new Color(200, 40, 0, 255);
     animatorBoard  = GetComponent <Animator>();
     animatorRecord = record.GetComponent <Animator>();
 }