Beispiel #1
0
    // Use this for initialization
    void Start()
    {
        bml = new BeatMapLoader(Application.dataPath + @"/BeatMap/test_music_easy.xml");

        while (bml.read())
        {
            text.text += bml.reader.ToString() + "\n";
        }

        mll = new MusicListLoader("test_music");

        text.text += mll.ToString();
    }
Beispiel #2
0
 public bool moveToNextKey()
 {
     return(bml.read());
 }