예제 #1
0
파일: WayPoint.cs 프로젝트: ahenson2/wake
    private void NextWaypoint()
    {
        if (index == 0)
        {
            SetLinesActive(true);
        }

        lineData.ReachIndex(index);
    }
예제 #2
0
    private void NextWaypoint(bool player)
    {
        if (index == 0)
        {
            SetLinesActive(true);
            firstPoint.SetActive(false);
        }

        LineDataCopy ld = GetLineData(player);

        ld.ReachIndex(index);
    }