示例#1
0
    private bool LinesCheck(GlobalLine targetLine)
    {
        bool isEmpty = false;

        if (targetLine.GetLength() <= 0)
        {
            isEmpty = true;
        }

        return isEmpty;
    }
示例#2
0
 private void ActivateLine(GlobalLine line)
 {
     line.gameObject.SetActive(true);
 }