Note: This is still WIP
Rust Syntax Support inside Godot Editor.
Godot Rust Syntax offers support to edit .rs
files inside the Godot Editor. Also offers support to view warnings and errors in Rust code directly inside the Godot Editor.
-
Automatic (Recommended): Download the plugin from the official Godot Asset Store using the
AssetLib
tab in Godot:- TODO
-
Manual: Download the latest github release and move only the
addons
folder into your projectaddons
folder.
- Windows (x86_64, x86_32)
- macOS (x86-64 + arm64 Universal)
- Linux (x86_64)
Requirements:
- Update dependencies to latest:
cargo update
- Build the project
cargo build --release
- Copy the output to bin folder of the addon:
Eg. macOS
cp target/release/libgodot_rust_syntax.dylib demo/addons/godot_syntax_rust/bin/libgodot_rust_syntax.macos.framework/libgodot_rust_syntax.macos.dylib
For the correct path to use inside the bin folder, look inside the demo/addons/godot_syntax_rust.gdextension
.