#bevy #2d-3d #locomotion #gamedev #game-controls

bevy-tnua

A floating character controller for bevy_rapier

21 releases (breaking)

0.16.0 Apr 2, 2024
0.15.0 Feb 24, 2024
0.14.2 Feb 1, 2024
0.13.0 Nov 13, 2023
0.2.0 Mar 19, 2023

#94 in Game dev

Download history 31/week @ 2023-12-31 19/week @ 2024-01-07 12/week @ 2024-01-14 2/week @ 2024-01-21 27/week @ 2024-01-28 22/week @ 2024-02-04 31/week @ 2024-02-11 281/week @ 2024-02-18 184/week @ 2024-02-25 241/week @ 2024-03-03 123/week @ 2024-03-10 97/week @ 2024-03-17 98/week @ 2024-03-24 289/week @ 2024-03-31 167/week @ 2024-04-07 69/week @ 2024-04-14

638 downloads per month

MIT/Apache

175KB
2.5K SLoC

Build Status Latest Version Rust Documentation Rust Documentation

Tnua - A Character Controller for Bevy.

Tnua ("motion" in Hebrew) is a floating character controller, which means that instead of constantly touching the ground the character floats above it, which makes many aspects of the motion control simpler.

Tnua can use Rapier or XPBD, and supports both the 2D and 3D versions of both with integration crates:

Note that:

  • Both integration crate (bevy-tnua-<physics-backend>) and the main bevy-tnua crate are required, and that the main plugin from both crates should be added.
  • If you use a physics backend with double precision (like XPBD with the f64 flag), you need to add the f64 flag to all the Tnua crates. This applies to double precision data that gets defined by the physics backend - Bevy itself will still use single precision, and this is the precision the position and rotation will use.

Features

  • Supports both 2D and 3D versions of Rapier and XPBD
  • Running
  • Jumping
  • Crouching
  • Variable height jumping
  • Coyote time
  • Jump buffer
  • Running up/down slopes/stairs
  • Tilt correction
  • Moving platforms
  • Rotating platforms
  • Animation helpers (not the animation itself, but Tnua has facilities that help deciding which animation to play)
  • Jump/fall through platforms
  • Air actions

Demos:

Running the Demos Locally

$ cargo run --bin <demo-name> --features <physics-backend>

Where <demo-name> is the name of the demo and <physics-backend> is either rapier2d, rapier3d, xpbd2d or xpbd3d. Make sure to match the dimensionality of the backend (2D or 3D) to that of the demo. For example, to run the 3D platformer with XPBD, use this:

$ cargo run --bin platformer_3d --features xpbd3d

Interesting Parts of the Demo Code

Versions

Tnua is broken into different crates that update separately, so this is broken into multiple tables. The version of bevy-tnua-physics-integration-layer must be the same for both the main bevy-tnua crate and the integration crates.

Main

bevy bevy-tnua-physics-integration-layer bevy-tnua
0.13 0.3 0.16
0.13 0.2 0.15
0.12 0.1 0.13-0.14

Rapier integration

bevy bevy-tnua-physics-integration-layer bevy-tnua-rapier bevy_rapier
0.13 0.3 0.4 0.25
0.13 0.2 0.3 0.25
0.12 0.1 0.2 0.24
0.12 0.1 0.1 0.23

XPBD integration

bevy bevy-tnua-physics-integration-layer bevy-tnua-xpbd bevy_xpbd
0.13 0.3 0.3 0.4
0.13 0.2 0.2 0.4
0.12 0.1 0.1 0.3

Pre-split

bevy bevy-tnua bevy_rapier
0.12 0.12 0.23
0.11 0.8 - 0.11 0.22
0.10 0.1 - 0.7 0.21

Reference Material

The following were used for coding the math and physics of Tnua:

Alternatives

  • bevy_mod_wanderlust - the original inspiration for this mod, and where I got the floating capsule video from. I ended up creating my own plugin because bevy_mod_wanderlust does not support 2D.
  • Rapier itself has a character controller. It's not a floating character controller, but it's integrated with the physics engine itself and uses that privilege to work out some of the problems the floating model is used to address.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~16–47MB
~726K SLoC