コード例 #1
0
 private void Start()
 {
     _text = GetComponent <Chess2Text>();
     if (_isForFirstPlayer)
     {
         _figure = _field.FirstFigure;
     }
     else
     {
         _figure = _field.SecondFigure;
     }
     _text.Text = _figure.Talent.Name;
 }
コード例 #2
0
ファイル: SkillSelector.cs プロジェクト: HexaLopata/Chess-2
 private void Awake()
 {
     _text = GetComponentInChildren <Chess2Text>();
 }