A GODOT Engine >=3.1 MIDI In Module for Android & iOS
This GODOT module is primarliy for iOS and Android devices to make it easier to listen on midi in signals from your smartphone.
For every midi device you connect to the device you will get the callbacks you need to read the midi device data on a specific port.
- Test on iOS
- Android Bluetooth support?
./example
-
Compile Godot with
./midiIn
in the godotmodule
dir.- Read up on how to compile modules for Android here http://docs.godotengine.org/en/3.1/development/compiling/compiling_for_android.html
-
Open GODOT
-
Create new, or open a project.
-
For Android: Add these lines to your
project.godot
file[android] modules="org/godotengine/godot/GodotMidiIn"
-
Follow the step by step guide below.
- Add new Node
- Select the MidiIn Node and press Create
- Now you should have your Node as a child to the parent Node.
- (Optional) Attach script to the new MidiIn node
- If you click on your Node tab you can see all available signals you can listen to.
- (Optional) Double click on a signal to connect it to a method in your Node.