-
-
Notifications
You must be signed in to change notification settings - Fork 219
Expand file tree
/
Copy pathcollider_constructors.rs
More file actions
65 lines (59 loc) · 2.29 KB
/
collider_constructors.rs
File metadata and controls
65 lines (59 loc) · 2.29 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
//! An example showcasing how to create colliders for meshes and scenes
//! using `ColliderConstructor` and `ColliderConstructorHierarchy` respectively.
use avian3d::prelude::*;
use bevy::prelude::*;
use examples_common_3d::ExampleCommonPlugin;
fn main() {
App::new()
.add_plugins((
DefaultPlugins,
ExampleCommonPlugin,
PhysicsPlugins::default(),
))
.add_systems(Startup, setup)
.run();
}
fn setup(
mut commands: Commands,
mut materials: ResMut<Assets<StandardMaterial>>,
mut meshes: ResMut<Assets<Mesh>>,
assets: ResMut<AssetServer>,
) {
// Spawn ground and generate a collider for the mesh using ColliderConstructor
commands.spawn((
Mesh3d(meshes.add(Plane3d::default().mesh().size(8.0, 8.0))),
MeshMaterial3d(materials.add(Color::srgb(0.3, 0.5, 0.3))),
ColliderConstructor::TrimeshFromMesh,
RigidBody::Static,
));
// Spawn Ferris the crab and generate colliders for the scene using ColliderConstructorHierarchy
commands.spawn((
// The model was made by RayMarch, licenced under CC0-1.0, and can be found here:
// https://github.com/RayMarch/ferris3d
SceneRoot(assets.load("ferris.glb#Scene0")),
Transform::from_xyz(0.0, 1.0, 0.0).with_scale(Vec3::splat(2.0)),
// Create colliders using convex decomposition.
// This takes longer than creating a trimesh or convex hull collider,
// but is more performant for collision detection.
ColliderConstructorHierarchy::new(ColliderConstructor::ConvexDecompositionFromMesh)
// Make the arms heavier to make it easier to stand upright
// Note: Bevy uses the format `MeshName.MaterialName` for the `Name` of glTF mesh primitives.
.with_density_for_name("armL_mesh.ferris_material", 3.0)
.with_density_for_name("armR_mesh.ferris_material", 3.0),
RigidBody::Dynamic,
));
// Light
commands.spawn((
PointLight {
intensity: 1_000_000.0,
shadows_enabled: true,
..default()
},
Transform::from_xyz(2.0, 8.0, 2.0),
));
// Camera
commands.spawn((
Camera3d::default(),
Transform::from_xyz(-5.0, 3.5, 5.5).looking_at(Vec3::ZERO, Vec3::Y),
));
}