コード例 #1
0
ファイル: Cell.cs プロジェクト: qinzhaojin666/TicTacToe
    void Awake()
    {
        cellOcc = CellOcc.NONE;

        animator           = GetComponent <Animator>();
        audioSource        = GetComponent <AudioSource>();
        audioSource.volume = PreferencesScript.Instance.GetSoundVolume();
    }
コード例 #2
0
ファイル: Cell.cs プロジェクト: qinzhaojin666/TicTacToe
 // Updates attributes in cell template
 public void UpdateAttributes(CellTemplate cellTemplate)
 {
     cellType = cellTemplate.cellOcc;
 }