Thanks to visit codestin.com
Credit goes to lib.rs

3 releases

0.1.2 Jun 13, 2025
0.1.1 May 23, 2025
0.1.0 May 18, 2025

#1232 in Game dev

Codestin Search App Codestin Search App

147 downloads per month

MIT license

13KB
124 lines

gdrust_kit

A collection of helpful tools for Rust Godot development.

Available Tools

Each tool can be enabled with its own feature flag:

  • pathfinding: Tools for pathfinding algorithms
  • collision: Tools for collision detection and physics
  • player_controller: Tools for managing player input and controls
  • utils: Utility tools

Usage

[dependencies]
gdrust_kit = { version = "0.1", features = ["collision"] }

gdrust_kit

Crates.io MIT/Apache 2.0 Docs

A toolkit of Rust utilities for Godot game development.

Tools

  • collision: Collision tools
  • pathfinding: Pathfinding tools
  • player_controller: Player input and controls
  • utils: Utility tools

Usage

# Use specific tools
gdrust_kit = { version = "0.1.0", features = ["collision"] }

# Use all tools
gdrust_kit = { version = "0.1.0", features = ["all"] }

# Or use individual crates directly
gdrust_collision = "0.1.0"
// Import tools with
use gdrust_kit::utils;

Documentation | GitHub

Dependencies