Home

Awesome

Spout GD

Godot 4.1.1 bindings for Spout.

The Godot 3 engine module is located on the godot-3 branch.

Status

The sender/receiver apis have been implemented but are mostly untested. Please open an issue if something doesn't seem to work.

Building

Prerequisites:

Clone the repository: git clone --recurse-submodules https://github.com/you-win/spout-gd.git

Run build.sh in a bash-compatible terminal. This will:

Once compilation is finished, the following files should be moved to your project's addons/spout-gd folder (create it manually if it does not exist):

Basic usage

var spout: Spout
var my_image: Image = load_from_somewhere_idk() # Provide your own image somehow
func _ready():
    spout = Spout.new()
    
    spout.send_image(my_image, image.get_width(), image.get_height())