LevelController.resetLevel C# (CSharp) 메소드

resetLevel() 공개 메소드

public resetLevel ( ) : void
리턴 void
    public void resetLevel()
    {
        foreach (GameObject path in currentPath) {
            Destroy(path);
        }
        currentPath.Clear();
        levelDone = false;
        currentLength = 0;
        sectionsSinceDynamic = 0;
        spawnInitialSections();
    }