ForNeVeR / O21

FOSS remake of U95, an old submarine arcade game from 1995.
MIT License
19 stars 9 forks source link

Music: enable MIDI #113

Closed ForNeVeR closed 1 year ago

ForNeVeR commented 1 year ago

TODO

After review

After merge

sinshu commented 1 year ago

If you are using Raylib_CsLo and MeltySynth, you can stream MIDI files using Raylib_CsLo's AudioStream.

Here is a link to a code example (in C#): https://github.com/sinshu/meltysynth/tree/main/Examples/Raylib_CsLo

By using this method, you won't need NAudio, and there is no need to place large sound data in memory.

ForNeVeR commented 1 year ago

@sinshu, thanks a lot for your advice — and for MeltySynth as well. It's great!

ForNeVeR commented 1 year ago

https://github.com/sinshu/meltysynth/tree/main/Examples/Raylib_CsLo works flawlessly.