-
-
Notifications
You must be signed in to change notification settings - Fork 133
/
Copy pathdistance_joint_2d.rs
50 lines (44 loc) · 1.38 KB
/
distance_joint_2d.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
use avian2d::{math::*, prelude::*};
use bevy::prelude::*;
use examples_common_2d::ExampleCommonPlugin;
fn main() {
App::new()
.add_plugins((
DefaultPlugins,
ExampleCommonPlugin,
PhysicsPlugins::default(),
))
.insert_resource(ClearColor(Color::srgb(0.05, 0.05, 0.1)))
.insert_resource(SubstepCount(50))
.insert_resource(Gravity(Vector::NEG_Y * 1000.0))
.add_systems(Startup, setup)
.run();
}
fn setup(mut commands: Commands) {
commands.spawn(Camera2d);
let square_sprite = Sprite {
color: Color::srgb(0.2, 0.7, 0.9),
custom_size: Some(Vec2::splat(50.0)),
..default()
};
let anchor = commands
.spawn((square_sprite.clone(), RigidBody::Kinematic))
.id();
let object = commands
.spawn((
square_sprite,
Transform::from_xyz(100.0, 0.0, 0.0),
RigidBody::Dynamic,
MassPropertiesBundle::from_shape(&Rectangle::from_length(50.0), 1.0),
))
.id();
commands.spawn(
DistanceJoint::new(anchor, object)
.with_local_anchor_1(Vector::ZERO)
.with_local_anchor_2(Vector::ZERO)
.with_rest_length(100.0)
.with_linear_velocity_damping(0.1)
.with_angular_velocity_damping(1.0)
.with_compliance(0.00000001),
);
}