Ejemplo n.º 1
0
    void Start()
    {
        //text.text = Application.dataPath;
        List <Note> notes = new List <Note> ();

        for (int i = 1; i < 21; i++)
        {
            notes.Add(new Note(4, 1.0f * i));
            notes.Add(new Note(0, 1.0f * i));
        }
        MusicNotes ms = new MusicNotes(notes);

        IFormatter formatter = new BinaryFormatter();
        Stream     stream    = new FileStream("MyFile.bin", FileMode.Create, FileAccess.Write, FileShare.None);

        formatter.Serialize(stream, ms);
        stream.Close();


        //text2.text = String.Format("{0}", ms2.AvgFreq());



        Debug.Log(String.Format("{0}", ms.AvgFreq()));
    }
Ejemplo n.º 2
0
    // Use this for initialization
    void Start()
    {
        //RhythmDemoPatternNormal();
        //RhythmDemoPatternEasy ();
        //IAmEvil ();
        BossThemePattern();
        //TempPattern();
        Debug.Log("Outputing MusicSheet");
        MusicNotesSerialization.Serialize("Boss Theme 1.bin", new MusicNotes(notes));
        Debug.Log("Testing");
        MusicNotes music = MusicNotesSerialization.Deserialize("Boss Theme 1.bin");

        Debug.Log(music.AvgFreq());
    }