vvanhee / Muzica

Basic music sampler/sequencer implemented using Unity3d / C#

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Muzica

This project is a proof of concept to determine if Unity3d can adeptly function as a music sequencer (conclusion: it functions quite well)

There are two main screens:

  • a sampler screen with 8 pads represented 8 different sounds. You can use the default drum sounds, or record your own into each pad

Sampler screen

  • a grid-based playback screen in which a sequencer continually loops at a desired tempo for 16 "beats", and you simply tap/click on the squares for specific samples to be triggered at given times

Playback screen

The main mechanism for timing is the repeated checking of AudioSettings.dspTime in the Update() method of the MonoBehaviour singleton PlaybackManager.cs against the time of the next known "beat", which is a function of the current tempo. When the current time is within a given convergence criterion (in this case, 50ms), the AudioSource for any new notes to be played are then scheduled at the time of the impending beat, and the next beat time is incremented.

Watch a quick demo at YouTube

Thanks to Nathan Rosenberg for the tasty drum samples.

Licenses

All source code is licensed under the MIT-License.

About

Basic music sampler/sequencer implemented using Unity3d / C#

License:MIT License


Languages

Language:C# 100.0%