mirror of
https://github.com/bevyengine/bevy
synced 2025-01-11 12:48:56 +00:00
25bfa80e60
# Objective Yet another PR for migrating stuff to required components. This time, cameras! ## Solution As per the [selected proposal](https://hackmd.io/tsYID4CGRiWxzsgawzxG_g#Combined-Proposal-1-Selected), deprecate `Camera2dBundle` and `Camera3dBundle` in favor of `Camera2d` and `Camera3d`. Adding a `Camera` without `Camera2d` or `Camera3d` now logs a warning, as suggested by Cart [on Discord](https://discord.com/channels/691052431525675048/1264881140007702558/1291506402832945273). I would personally like cameras to work a bit differently and be split into a few more components, to avoid some footguns and confusing semantics, but that is more controversial, and shouldn't block this core migration. ## Testing I ran a few 2D and 3D examples, and tried cameras with and without render graphs. --- ## Migration Guide `Camera2dBundle` and `Camera3dBundle` have been deprecated in favor of `Camera2d` and `Camera3d`. Inserting them will now also insert the other components required by them automatically.
81 lines
2.2 KiB
Rust
81 lines
2.2 KiB
Rust
//! Demonstrates how to work with Cubic curves.
|
|
|
|
use bevy::{
|
|
color::palettes::css::{ORANGE, SILVER, WHITE},
|
|
math::vec3,
|
|
prelude::*,
|
|
};
|
|
|
|
#[derive(Component)]
|
|
struct Curve(CubicCurve<Vec3>);
|
|
|
|
fn main() {
|
|
App::new()
|
|
.add_plugins(DefaultPlugins)
|
|
.add_systems(Startup, setup)
|
|
.add_systems(Update, animate_cube)
|
|
.run();
|
|
}
|
|
|
|
fn setup(
|
|
mut commands: Commands,
|
|
mut meshes: ResMut<Assets<Mesh>>,
|
|
mut materials: ResMut<Assets<StandardMaterial>>,
|
|
) {
|
|
// Define your control points
|
|
// These points will define the curve
|
|
// You can learn more about bezier curves here
|
|
// https://en.wikipedia.org/wiki/B%C3%A9zier_curve
|
|
let points = [[
|
|
vec3(-6., 2., 0.),
|
|
vec3(12., 8., 0.),
|
|
vec3(-12., 8., 0.),
|
|
vec3(6., 2., 0.),
|
|
]];
|
|
|
|
// Make a CubicCurve
|
|
let bezier = CubicBezier::new(points).to_curve().unwrap();
|
|
|
|
// Spawning a cube to experiment on
|
|
commands.spawn((
|
|
Mesh3d(meshes.add(Cuboid::default())),
|
|
MeshMaterial3d(materials.add(Color::from(ORANGE))),
|
|
Transform::from_translation(points[0][0]),
|
|
Curve(bezier),
|
|
));
|
|
|
|
// Some light to see something
|
|
commands.spawn((
|
|
PointLight {
|
|
shadows_enabled: true,
|
|
intensity: 10_000_000.,
|
|
range: 100.0,
|
|
..default()
|
|
},
|
|
Transform::from_xyz(8., 16., 8.),
|
|
));
|
|
|
|
// ground plane
|
|
commands.spawn((
|
|
Mesh3d(meshes.add(Plane3d::default().mesh().size(50., 50.))),
|
|
MeshMaterial3d(materials.add(Color::from(SILVER))),
|
|
));
|
|
|
|
// The camera
|
|
commands.spawn((
|
|
Camera3d::default(),
|
|
Transform::from_xyz(0., 6., 12.).looking_at(Vec3::new(0., 3., 0.), Vec3::Y),
|
|
));
|
|
}
|
|
|
|
fn animate_cube(time: Res<Time>, mut query: Query<(&mut Transform, &Curve)>, mut gizmos: Gizmos) {
|
|
let t = (ops::sin(time.elapsed_seconds()) + 1.) / 2.;
|
|
|
|
for (mut transform, cubic_curve) in &mut query {
|
|
// Draw the curve
|
|
gizmos.linestrip(cubic_curve.0.iter_positions(50), WHITE);
|
|
// position takes a point from the curve where 0 is the initial point
|
|
// and 1 is the last point
|
|
transform.translation = cubic_curve.0.position(t);
|
|
}
|
|
}
|