https://github.com/you-win/spout-gd
Spout for Godot 4
https://github.com/you-win/spout-gd
creative-coding godot godotengine spout
Last synced: 10 days ago
JSON representation
Spout for Godot 4
- Host: GitHub
- URL: https://github.com/you-win/spout-gd
- Owner: you-win
- License: mpl-2.0
- Created: 2022-02-03T09:03:02.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2025-03-18T15:14:36.000Z (about 1 month ago)
- Last Synced: 2025-03-27T18:50:23.489Z (23 days ago)
- Topics: creative-coding, godot, godotengine, spout
- Language: C++
- Homepage:
- Size: 64.5 KB
- Stars: 50
- Watchers: 3
- Forks: 10
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-godot - spout-gd - Share OpenGL textures across Windows applications through your GPU using [Spout](https://github.com/leadedge/Spout2). (Modules / 3D)
- awesome-godot-3 - spout-gd - Share OpenGL textures across Windows applications through your GPU using [Spout](https://github.com/leadedge/Spout2). (Modules / 3D)
- awesome-godot-3 - spout-gd - Share OpenGL textures across Windows applications through your GPU using [Spout](https://github.com/leadedge/Spout2). (Modules / 3D)
README
# Spout GD
[Godot](https://github.com/godotengine/godot) 4.2.1 bindings for [Spout](https://github.com/leadedge/Spout2).
The Godot 3 engine module is located on the `godot-3` branch.
Precompiled builds of the plugin can be found in the [releases](../../releases/tag/latest) section of github.
## Status
The sender/receiver apis have been implemented. Please open an issue if something doesn't seem to work.
## Building
Prerequisites:
* Windows (Spout only works on Windows)
* git
* bash
* scons
* a C++ compiler capable of [compiling Godot](https://docs.godotengine.org/en/stable/contributing/development/compiling/compiling_for_windows.html)
* cmakeClone the repository: `git clone --recurse-submodules https://github.com/you-win/spout-gd.git`
Run `build.sh` in a bash-compatible terminal. This will:
* Compile Spout2
* Compile the gdextension bindings
* Compile spout-gdOnce 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):
* `spout_gd.gdextension`
* `Spout2/Binaries/x64/SpoutLibrary.dll`
* `out/spout_gd.windows.template_debug.dll`
* `out/spout_gd.windows.template_release.dll`Like this:
```
Godot_project_root
├───addons
│ ├───spout-gd
│ │ ├───SpoutLibrary.dll
│ │ ├───spout_gd.gdextension
│ │ ├───spout_gd.windows.template_debug.dll
│ │ ├───spout_gd.windows.template_release.dll
```## Basic usage
```gdscript
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())
```## SpoutTexture - Simple Receiving
Provided as a convenience is a Texture resource for receiving streams from a Spout sender. You can use this any place you can use any other kind of Texture, including places like UI elements and Materials on 3D objects.
The sender is polled per render cycle.
## SpoutViewport - Simple Sending
By wrapping the scene you wish to render in a SpoutViewport, you can easily send render target contents over Spout. Simply use it the same way as you would a SubViewport, and assign a sender name for it to assume.
The SpoutViewport is designed to only send during application run time, not within the editor. This helps prevent creating multiple senders with the same name during testing, allowing for more stable capture.
![]()