Godot gdextension csound library to allow playing music using csound. Currently works with Godot v4.4 stable release.
Project running in the browser godot-csound
- godot-csound-example - Simple godot-csound example.
- godot-synths - Music synths for Godot. (demo)
The official documentation is hosted on Github pages. It is maintained in its own GitHub repository.
The class reference is also accessible from the Godot editor.
Download latest release and extract into Godot project.
On MacOS disable the check for unsigned binaries:
xattr -dr com.apple.quarantine addons/csound/bin/macos
This project uses docker to build the project for different platforms. The build scripts were developed using Ubuntu (x86_64).
- Install docker using apt:
sudo apt install docker.io
- Add user to docker group:
sudo usermod -a -G docker $USER
- Initialize git submodules:
git submodule update --init --recursive
- Build project using make:
#build all platforms
make all
#build for ubuntu
make ubuntu
#build for windows
make mingw
#build for MacOS
make osxcross
#build for iOS
make ioscross
#build for Android
make android
#build for web
make web