Skip to content

Prototype of a 2-D music-driven bullet hell game with customizability made using Unity and Music Information Retrieval

Notifications You must be signed in to change notification settings

QuanMPhm/LightShow_Unity

Repository files navigation

LightShow_Unity

Prototype of a 2-D music-driven bullet hell game with customizability made using Unity and Music Information Retrieval (MIR). This prototype is my first game made in Unity, and a continuation of my Linux SFML project of the same name. Demo Youtube link: https://youtu.be/T89ApJfXRbg

The concept of the game is as follows:

  • Given a song file and the appropriate audio processing tools, we could automatically extract features from the song. These features could be the beat, the frequencies of different playing melodies, the chord, etc.
  • Given a time-array of these musical features, and a design file that maps in-game events to these musical features, we can create a game where events and challenges are synced to the events of the music, resulting in a visually pleasing experience.

The design file used for the demo is a JSON file whose structure is defined by LevelJSONGen.cs. The demo features a limited projectile system, with 7 different obstacles containing various properties which can be specified using the player's JSON design file.

The main file of interest should be LevelController.cs, which performs pre-processing on the music data, combines the music data with the design file, handles UI elements, spawns obstacles, and performs various other functionalities. ObstacleController.cs is the base class for all obstacles in the game. The Obstacle directory contains the classes for each in-game obstacle.

My prototype currently only implements the beat and the main melody frequencies to generate in-game obstacles. For future work, other musical features would include the chords, motifs, complimentary melodies, etc. Main melody frequency recognition is done using the Melodia VAMP Plugin, and the beat is specified by user input. Future goals are to implement more robust MIR algorhithms using the Essentia framework.

About

Prototype of a 2-D music-driven bullet hell game with customizability made using Unity and Music Information Retrieval

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages