// Start is called before the first frame update void Start() { music = new EightBitSoundGenerator.Music(); MemoryStream stream = new MemoryStream(musicFile.bytes); BinaryReader reader = new BinaryReader(stream); music.Load(reader); }