Merge pull request #3 from franklinblanco/master

Upgrade to bevy 0.13
This commit is contained in:
Bram Buurlage 2024-02-19 10:22:48 +01:00 committed by GitHub
commit 2dd04817bf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 16 deletions

View File

@ -10,4 +10,4 @@ keywords = ["gamedev", "graphics", "bevy", "animation"]
license = "MIT OR Apache-2.0"
[dependencies]
bevy = "0.12"
bevy = "0.13"

View File

@ -53,10 +53,7 @@ fn setup(
});
commands.spawn(PbrBundle {
mesh: meshes.add(Mesh::from(shape::Plane {
size: 5.0,
subdivisions: 0,
})),
mesh: meshes.add(Mesh::from(Plane3d::default().mesh().size(5.0, 5.0))),
material: materials.add(StandardMaterial {
base_color: Color::WHITE,
..default()
@ -99,16 +96,11 @@ fn setup_ik(
&names,
)
.unwrap();
let target = commands
.spawn((
PbrBundle {
transform: Transform::from_xyz(0.3, 0.8, 0.2),
mesh: meshes.add(Mesh::from(shape::UVSphere {
radius: 0.05,
sectors: 7,
stacks: 7,
})),
mesh: meshes.add(Sphere::new(0.05).mesh().uv(7, 7)),
material: materials.add(StandardMaterial {
base_color: Color::RED,
..default()
@ -122,11 +114,7 @@ fn setup_ik(
let pole_target = commands
.spawn(PbrBundle {
transform: Transform::from_xyz(-1.0, 0.4, -0.2),
mesh: meshes.add(Mesh::from(shape::UVSphere {
radius: 0.05,
sectors: 7,
stacks: 7,
})),
mesh: meshes.add(Sphere::new(0.05).mesh().uv(7, 7)),
material: materials.add(StandardMaterial {
base_color: Color::GREEN,
..default()