Examples

Many additional godot-bevy examples are available in the examples directory. Examples are set up as executable binaries. An example can then be executed using the following cargo command line in the root of the godot-bevy repository:

cargo run --bin platformer_2d

The following additional examples are currently available if you want to check them out:

ExampleDescription
Dodge the CreepsPorted example from Godot's tutorial on making a 2D game.
Input Event DemoShowcases the different ways in which you can get input either via Bevy's input API or using Godot's.
Platformer 2DA more complete example showing how to tag Godot nodes for an editor heavy.
Simple Node2D MovementA minimal example with basic movement.
Timing TestInternal test to measure frames.