godot-rust is a Rust library that implements native bindings for the Godot game engine. This allows you to develop games or other applications in Godot, while benefiting from Rust's strengths, such as its type system, scalability and performance.
The bindings cover most of the exposed API of Godot 3.4, and are being used on a number of projects in development, but we still expect non-trivial breaking changes in the API in the coming releases. godot-rust adheres to Cargo's semantic versioning.
Minimum supported Rust version (MSRV) is 1.56. We use the Rust 2021 Edition.
We are committed to keeping compatibility with the latest stable patch releases of all minor versions of the engine, starting from Godot 3.2:
- Godot 3.4 (works out-of-the-box)
- Godot 3.3 (needs feature
custom-godot
) - Godot 3.2 (needs feature
custom-godot
)
For versions 3.2 and 3.3, some extra steps are needed, see Custom builds below.
The bindings do not support in-development Godot 4 versions at the moment. Support is planned as the native extensions become more stable.
Detailed setup is explained in the Getting Started section of the book. In case of problems, consider also reading the FAQ.
This is the recommended way of using godot-rust. After bindgen
dependencies and a current Godot version are installed, add the gdnative
crate as a dependency, and set the crate type to cdylib
:
[dependencies]
gdnative = "0.10.1"
[lib]
crate-type = ["cdylib"]
If you would like to benefit from cutting-edge features and bugfixes, you can use the GitHub version. We have a relatively sophisticated CI and test suite for basic stability, but the GitHub version is typically more experimental and less battle-tested than a crates.io
release. We also do not guarantee any SemVer compatibility here.
[dependencies]
gdnative = { git = "https://github.com/godot-rust/godot-rust.git" }
[lib]
crate-type = ["cdylib"]
To use the bindings with a different Godot version or a custom build of the engine, see Custom Godot builds in the user guide.
Async support is a work-in-progress, with a low-level API available in gdnative::tasks
, if the async
feature is enabled on gdnative
. See this page in the book for an introduction to use the async feature with Tokio.
A typical use case is to expose your own Native Class, a Rust API that can be invoked from the Godot engine. The resulting native script can be attached to the scene tree, just like GDScript (.gd
files).
This happens via dynamic libraries and the GDNative interface, which will be loaded from Godot. The necessary wiring is done behind the scenes by godot-rust. A simple "Hello world" application could look like this:
use gdnative::prelude::*;
#[derive(NativeClass)]
#[inherit(Node)]
pub struct HelloWorld;
#[methods]
impl HelloWorld {
fn new(_base: &Node) -> Self {
HelloWorld
}
#[method]
fn _ready(&self, #[base] _base: &Node) {
godot_print!("Hello, world.");
}
}
fn init(handle: InitHandle) {
handle.add_class::<HelloWorld>();
}
godot_init!(init);
Important note:
Before launching the examples in the Godot editor, you must first run
cargo build
and wait for the build operations to finish successfully.At startup, the Godot editor tries to load all resources used by the project, including the native library. If the latter isn't present, the editor will skip properties or signals associated with the missing native scripts in the scene. This causes the scene tree to be non-functional for any sample that relies on properties or signals configured in the editor.
The /examples directory contains several ready to use examples, complete with Godot projects and setup for easy compilation from Cargo:
- hello-world - Your first project, writes to the console.
- spinning-cube - Spin our own node in place, exposing editor properties.
- scene-create - Load, instance and place scenes using Rust code.
- builder-export - Export using the builder API.
- property-export - Export complex properties such as collections.
- dodge-the-creeps - A Rust port of the little Godot game.
- signals - Connect and emit signals.
- resource - Create and use custom resources.
- rpc - Simple peer-to-peer networking.
- native-plugin - Create custom node plugins.
To see a list of games and integrations developed on top of godot-rust, have a look at our list of third-party projects in the book.
See the contribution guidelines.
Any contribution submitted for inclusion in the work by you shall be licensed under the MIT license, without any additional terms or conditions.