Expand description
§Avian Pickup
A plugin for implementing picking up dynamic rigid bodies in Avian physics for the Bevy engine. Modeled after Half Life 2’s gravity gun.
§Examples
§Features
- Pick up nearby dynamic rigid bodies.
- Pull far away ones towards you.
- Throw them around or drop them gently.
- Manipulate them while holding them, a bit like how the physics gun in Garry’s Mod works.
- Nearly everything is configurable. Lots of knobs to turn, if you feel like it!
- The default configuration is set up to emulate picking things up with your hands.
- Can very easily be configured to emulate a gravity gun or a tractor beam.
- Scheduled in fixed updates for deterministic physics.
- Parts of the plugin use randomness, which can be overridden by a user-provided
Rng.
- Parts of the plugin use randomness, which can be overridden by a user-provided
- Messages keep you informed about what’s happening so you can react with sound effects, particles, etc.
- Works for the player and AI alike.
- Input is done with messages, so you can provide your own input system.
- I think the documentation is alright :)
§Limitations
- Since the physics are running only in fixed updates but are also
right in front of the camera, which should run in a variable update,
you need some sort of interpolation to make it look good. Fortunately,
Avian has a built-in solution that only requires you to attach
TransformInterpolationto your props! - Only a single object can be picked up per actor at a time.
- An object cannot be pulled away while it is being held by someone else.
- Only works in 3D.
- Only works with dynamic rigid bodies, not static or kinematic ones.
- Performance should be alrigt, but I did not optimize much for it.
- Not tested with complex collider hierarchies or compound colliders.
- Not tested with networking.
- Not tested with Wasm (pretty sure it should work, though).
§Guide
§Installation
Make sure to add the Avian Pickup plugin after Avian itself:
use bevy::prelude::*;
use avian3d::prelude::*;
use avian_pickup::prelude::*;
App::new()
.add_plugins((
DefaultPlugins,
// Add Avian
PhysicsPlugins::default(),
// Add Avian Pickup
AvianPickupPlugin::default(),
));§Usage
The main two concepts of Avian Pickup are actors and props. It’s simple:
- An actor is something that can pick up props.
these are spatial entities with an
AvianPickupActorcomponent. - An prop is an object to be picked up.
These are spatial entities with a regular old
RigidBody::Dynamiccomponent and associated colliders.
As such, this is the minimum version of these two:
use bevy::prelude::*;
use avian3d::prelude::*;
use avian_pickup::prelude::*;
fn setup(mut commands: Commands) {
// Actor
commands.spawn((
Transform::default(),
AvianPickupActor::default(),
));
// Prop
commands.spawn((
Transform::default(),
RigidBody::Dynamic,
Collider::sphere(0.5),
// Important to prevent jittering
TransformInterpolation,
));
}In order for an actor to try picking up a prop, you need to send an AvianPickupInput message:
use bevy::prelude::*;
use avian_pickup::prelude::*;
fn handle_input(
mut avian_pickup_input_writer: MessageWriter<AvianPickupInput>,
) {
let actor_entity = todo!("Your entity goes here");
avian_pickup_input_writer.write(AvianPickupInput {
action: AvianPickupAction::Pull,
actor: actor_entity,
});
}When using a AvianPickupAction::Pull action, the actor will try to pull the nearest prop they’re facing towards
them. Once they have picked it up, its AvianPickupActorState will reflect that by becoming
AvianPickupActorState::Holding(..). Note that AvianPickupActorState is a component that will automatically
get added to every actor.
That’s it! You can use other actions to further instruct the actor to manipulate the prop.
The AvianPickupActor holds a lot of configuration options to tweak the behavior of the actor.
Many of these can be overridden for a specific prop by using components in the prop module.
Finally, you can also read the messages in the output module to react to what’s happening.
§First Person Camera
If you want to use a first person perspective for your player and allow them to be an AvianPickupActor,
you need to make sure to move the camera before the physics update takes place. Usually, all movement code
for physical entities in the world should be in the fixed timestep, but the camera is a notable exception.
A player will want to have a camera that works as smoothly as possible and updates every frame. That’s why you need to place the camera in the last variable timestep schedule before the physics update. You do this like so:
use bevy::prelude::*;
App::new()
.add_systems(
RunFixedMainLoop,
move_camera.in_set(RunFixedMainLoopSystems::BeforeFixedMainLoop),
);
fn move_camera() { todo!() }§Version Compatibility
avian_pickup | avian | bevy |
|---|---|---|
0.5 | 0.6 | 0.18 |
0.4 | 0.5 | 0.18 |
0.3 | 0.4 | 0.17 |
0.2 | 0.3 | 0.16 |
0.1 | 0.2 | 0.15 |
Modules§
- actor
- Module for the actor that can pick up objects.
- input
- Module for the types that represent input events for Avian Pickup.
- output
- Events related to props being thrown and dropped. These will be sent by the Avian Pickup plugin to notify the user of prop-related events. Handle these to e.g. play sound effects or show visual effects.
- prelude
- Everything you need to get started with Avian Pickup.
- prop
- Components that can be placed on props to customize their behavior when picked up or thrown. All of these are optional.
Structs§
- Avian
Pickup Plugin - The Avian Pickup plugin. Add this after the Avian Physics plugins to enable
pickup functionality. Uses the same
Schedule` as Avian. - Holding
- Component inserted on an actor when they are holding a prop.
- RngSource
- A resource that provides a source of randomness.
Will fall back to
rand::rng()if no source is provided.
Enums§
- Avian
Pickup System - Set enum for the systems added by
AvianPickupPlugin. Use this to order your systems relative to the ones used by Avian Pickup. This is run in Avian’sPhysicsStepSet::Firstand scheduled underPhysicsSchedule.