Embed high-performance audio synthesis directly in your Godot 4.x games.
Add the addon via Godot's Asset Library or clone directly:
# Via Asset Library
AssetLib → Search "nkido" → Install
# Or via git (in your project directory)
cd addons
git clone https://github.com/mlaass/godot-nkido-addon.git nkidoAdd the NkidoPlayer node and play patterns from GDScript:
extends Node
@onready var nkido = $NkidoPlayer
func _ready():
nkido.play("osc('saw', 220) * 0.3 |> out()")
func _on_play_button_pressed():
# Change pattern while playing
nkido.play("osc('sin', 440) * 0.3 |> out()")