Compare commits
12 commits
main
...
scavengers
Author | SHA1 | Date | |
---|---|---|---|
|
146d401aff | ||
|
c3e955c1cd | ||
|
0fae893508 | ||
|
94717dd60c | ||
|
18766a3d5b | ||
|
e358830c5f | ||
|
8a440d6e81 | ||
|
ff9b1671b1 | ||
|
59f0ed89e9 | ||
|
3b307f4389 | ||
|
66724e8946 | ||
|
63ed962155 |
16 changed files with 2550 additions and 1464 deletions
3078
Cargo.lock
generated
3078
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -8,14 +8,14 @@ rand = "0.8"
|
||||||
# bevy_polyline = "0.4"
|
# bevy_polyline = "0.4"
|
||||||
noise = { git = "https://github.com/Razaekel/noise-rs" }
|
noise = { git = "https://github.com/Razaekel/noise-rs" }
|
||||||
hexasphere = "8"
|
hexasphere = "8"
|
||||||
wgpu = "0.15"
|
wgpu = "0.19"
|
||||||
bevy-inspector-egui = "0.18"
|
bevy-inspector-egui = "0.24"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
inspector = []
|
inspector = []
|
||||||
|
|
||||||
[dependencies.bevy]
|
[dependencies.bevy]
|
||||||
version = "0.10"
|
version = "0.13"
|
||||||
default-features = false
|
default-features = false
|
||||||
features = [
|
features = [
|
||||||
"bevy_gilrs",
|
"bevy_gilrs",
|
||||||
|
@ -27,11 +27,12 @@ features = [
|
||||||
"bevy_text",
|
"bevy_text",
|
||||||
"bevy_gltf",
|
"bevy_gltf",
|
||||||
"bevy_sprite",
|
"bevy_sprite",
|
||||||
|
"tonemapping_luts"
|
||||||
]
|
]
|
||||||
|
|
||||||
[dependencies.bevy_rapier3d]
|
[dependencies.bevy_rapier3d]
|
||||||
features = ["debug-render-3d"]
|
features = ["debug-render-3d"]
|
||||||
version = "0.21"
|
version = "0.26"
|
||||||
|
|
||||||
# Maybe also enable only a small amount of optimization for our code:
|
# Maybe also enable only a small amount of optimization for our code:
|
||||||
[profile.dev]
|
[profile.dev]
|
||||||
|
|
|
@ -4,6 +4,7 @@ use bevy::{
|
||||||
prelude::{Component, ReflectResource, Resource, Vec3},
|
prelude::{Component, ReflectResource, Resource, Vec3},
|
||||||
reflect::Reflect,
|
reflect::Reflect,
|
||||||
};
|
};
|
||||||
|
use bevy_rapier3d::dynamics::Velocity;
|
||||||
|
|
||||||
#[derive(Debug, Resource)]
|
#[derive(Debug, Resource)]
|
||||||
pub(crate) struct ActionDebugInstant(pub Instant);
|
pub(crate) struct ActionDebugInstant(pub Instant);
|
||||||
|
@ -26,20 +27,8 @@ impl ActionDebugInstant {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Component)]
|
#[derive(Debug, Component, Default)]
|
||||||
pub(super) struct Tunneling {
|
pub struct PreviousVelocity(pub Velocity);
|
||||||
pub frames: usize,
|
|
||||||
pub dir: Vec3,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Default for Tunneling {
|
|
||||||
fn default() -> Self {
|
|
||||||
Tunneling {
|
|
||||||
frames: 15,
|
|
||||||
dir: Vec3::ZERO,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Resource, Reflect)]
|
#[derive(Debug, Resource, Reflect)]
|
||||||
#[reflect(Resource)]
|
#[reflect(Resource)]
|
||||||
|
@ -52,7 +41,7 @@ impl Default for MovementSettings {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
Self {
|
Self {
|
||||||
accel: 20.0,
|
accel: 20.0,
|
||||||
gravity: 4.8,
|
gravity: 9.8,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
use bevy::{
|
use bevy::{
|
||||||
diagnostic::FrameTimeDiagnosticsPlugin,
|
diagnostic::FrameTimeDiagnosticsPlugin,
|
||||||
ecs::reflect::ReflectResource,
|
ecs::reflect::ReflectResource,
|
||||||
prelude::{App, IntoSystemConfigs, Plugin, Resource},
|
prelude::{App, IntoSystemConfigs, Plugin, Resource, Startup, Update},
|
||||||
reflect::Reflect,
|
reflect::Reflect,
|
||||||
};
|
};
|
||||||
use bevy_rapier3d::prelude::{NoUserData, RapierPhysicsPlugin};
|
use bevy_rapier3d::prelude::{NoUserData, RapierPhysicsPlugin};
|
||||||
|
@ -28,18 +28,17 @@ impl Plugin for CyberActionPlugin {
|
||||||
.init_resource::<CyberLean>()
|
.init_resource::<CyberLean>()
|
||||||
.register_type::<CyberLean>()
|
.register_type::<CyberLean>()
|
||||||
.register_type::<CatControllerSettings>()
|
.register_type::<CatControllerSettings>()
|
||||||
.add_plugin(RapierPhysicsPlugin::<NoUserData>::default())
|
.add_plugins(RapierPhysicsPlugin::<NoUserData>::default())
|
||||||
.add_startup_system(timestep_setup)
|
.add_systems(Startup, physics_init)
|
||||||
.add_plugin(FrameTimeDiagnosticsPlugin::default())
|
.add_plugins(FrameTimeDiagnosticsPlugin)
|
||||||
.add_systems(
|
.add_systems(
|
||||||
|
Update,
|
||||||
(
|
(
|
||||||
gravity,
|
reset_external_forces,
|
||||||
cyber_lean,
|
cyber_lean,
|
||||||
falling_cat,
|
falling_cat,
|
||||||
input_forces,
|
wheel_forces,
|
||||||
drag,
|
drag,
|
||||||
tunnel_out,
|
|
||||||
surface_fix,
|
|
||||||
)
|
)
|
||||||
.chain(),
|
.chain(),
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,21 +1,238 @@
|
||||||
use std::f32::consts::{FRAC_PI_3, FRAC_PI_4};
|
use std::f32::consts::{FRAC_PI_3, FRAC_PI_4};
|
||||||
|
|
||||||
use bevy::prelude::{
|
use bevy::{
|
||||||
Commands, Entity, Quat, Query, Res, ResMut, Time, Transform, Vec3, With, Without,
|
prelude::{
|
||||||
|
info, Gizmos, Local, Quat, Query, Res, ResMut, Time, Transform, Vec3, With, Without,
|
||||||
|
},
|
||||||
|
render::color::Color,
|
||||||
};
|
};
|
||||||
use bevy_rapier3d::prelude::{
|
use bevy_rapier3d::{
|
||||||
CollisionGroups, ExternalForce, Group, MultibodyJoint, QueryFilter, RapierConfiguration,
|
geometry::Friction,
|
||||||
RapierContext, ReadMassProperties, TimestepMode, Velocity,
|
prelude::{
|
||||||
|
ExternalForce, QueryFilter, RapierConfiguration, RapierContext, ReadMassProperties,
|
||||||
|
TimestepMode, Velocity,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
#[cfg(feature = "inspector")]
|
#[cfg(feature = "inspector")]
|
||||||
use super::ActionDebugInstant;
|
use super::ActionDebugInstant;
|
||||||
use super::{CatControllerSettings, CatControllerState, CyberLean, MovementSettings, Tunneling};
|
use super::{
|
||||||
|
CatControllerSettings, CatControllerState, CyberLean, MovementSettings, PreviousVelocity,
|
||||||
|
};
|
||||||
use crate::{
|
use crate::{
|
||||||
bike::{CyberBikeBody, CyberSteering, CyberWheel, WheelConfig, BIKE_WHEEL_COLLISION_GROUP},
|
bike::{CyberBikeBody, CyberSteering, CyberWheel, WheelConfig},
|
||||||
input::InputState,
|
input::InputState,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pub(super) fn physics_init(
|
||||||
|
mut config: ResMut<RapierConfiguration>,
|
||||||
|
settings: Res<MovementSettings>,
|
||||||
|
) {
|
||||||
|
config.timestep_mode = TimestepMode::Variable {
|
||||||
|
max_dt: 1.0 / 60.0,
|
||||||
|
time_scale: 1.0,
|
||||||
|
substeps: 3,
|
||||||
|
};
|
||||||
|
|
||||||
|
config.gravity = Vec3::NEG_Y * settings.gravity;
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(super) fn reset_external_forces(
|
||||||
|
mut query: Query<&mut ExternalForce>,
|
||||||
|
#[cfg(feature = "inspector")] mut debug_instant: ResMut<ActionDebugInstant>,
|
||||||
|
) {
|
||||||
|
for mut force in query.iter_mut() {
|
||||||
|
#[cfg(feature = "inspector")]
|
||||||
|
if debug_instant.elapsed().as_millis() > 1000 {
|
||||||
|
info!("{force:?}");
|
||||||
|
}
|
||||||
|
|
||||||
|
force.force = Vec3::ZERO;
|
||||||
|
force.torque = Vec3::ZERO;
|
||||||
|
}
|
||||||
|
#[cfg(feature = "inspector")]
|
||||||
|
if debug_instant.elapsed().as_millis() > 1000 {
|
||||||
|
debug_instant.reset();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// The desired lean angle, given steering input and speed.
|
||||||
|
pub(super) fn cyber_lean(
|
||||||
|
bike_state: Query<(&Velocity, &Transform), With<CyberBikeBody>>,
|
||||||
|
wheels: Query<&Transform, With<CyberWheel>>,
|
||||||
|
input: Res<InputState>,
|
||||||
|
gravity_settings: Res<MovementSettings>,
|
||||||
|
mut lean: ResMut<CyberLean>,
|
||||||
|
) {
|
||||||
|
let (velocity, xform) = bike_state.single();
|
||||||
|
let vel = velocity.linvel.dot(*xform.forward());
|
||||||
|
let v_squared = vel.powi(2);
|
||||||
|
let steering_angle = yaw_to_angle(input.yaw);
|
||||||
|
let wheels: Vec<_> = wheels.iter().map(|w| w.translation).collect();
|
||||||
|
let wheel_base = (wheels[0] - wheels[1]).length();
|
||||||
|
let radius = wheel_base / steering_angle.tan();
|
||||||
|
let gravity = gravity_settings.gravity;
|
||||||
|
let v2_r = v_squared / radius;
|
||||||
|
let tan_theta = (v2_r / gravity).clamp(-FRAC_PI_3, FRAC_PI_3);
|
||||||
|
|
||||||
|
if tan_theta.is_finite() && !tan_theta.is_subnormal() {
|
||||||
|
lean.lean = tan_theta.atan().clamp(-FRAC_PI_4, FRAC_PI_4);
|
||||||
|
} else {
|
||||||
|
lean.lean = 0.0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// PID-based controller for stabilizing attitude; keeps the cyberbike upright.
|
||||||
|
pub(super) fn falling_cat(
|
||||||
|
mut bike_query: Query<(
|
||||||
|
&Transform,
|
||||||
|
&Velocity,
|
||||||
|
&mut ExternalForce,
|
||||||
|
&mut CatControllerState,
|
||||||
|
)>,
|
||||||
|
time: Res<Time>,
|
||||||
|
settings: Res<CatControllerSettings>,
|
||||||
|
lean: Res<CyberLean>,
|
||||||
|
mut count: Local<usize>,
|
||||||
|
) {
|
||||||
|
let (xform, vel, mut forces, mut control_vars) = bike_query.single_mut();
|
||||||
|
let world_up = Vec3::Y; //xform.translation.normalize();
|
||||||
|
let rot = Quat::from_axis_angle(*xform.back(), lean.lean);
|
||||||
|
let target_up = rotate_point(&world_up, &rot).normalize();
|
||||||
|
|
||||||
|
let bike_right = xform.right();
|
||||||
|
|
||||||
|
let roll_error = bike_right.dot(target_up);
|
||||||
|
let pitch_error = world_up.dot(*xform.back());
|
||||||
|
|
||||||
|
if *count < 30 {
|
||||||
|
if *count == 0 {
|
||||||
|
//dbg!(&xform.translation);
|
||||||
|
//dbg!(&vel.linvel);
|
||||||
|
}
|
||||||
|
*count += 1;
|
||||||
|
} else {
|
||||||
|
*count = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// only try to correct roll if we're not totally vertical
|
||||||
|
if pitch_error.abs() < 0.95 {
|
||||||
|
let (derivative, integral) = control_vars.update_roll(roll_error, time.delta_seconds());
|
||||||
|
let mag =
|
||||||
|
(settings.kp * roll_error) + (settings.ki * integral) + (settings.kd * derivative);
|
||||||
|
if mag.is_finite() {
|
||||||
|
forces.torque += xform.back() * mag;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(super) fn wheel_forces(
|
||||||
|
mut wheels_query: Query<
|
||||||
|
(
|
||||||
|
&Transform,
|
||||||
|
&Velocity,
|
||||||
|
&mut ExternalForce,
|
||||||
|
&mut Friction,
|
||||||
|
Option<&CyberSteering>,
|
||||||
|
),
|
||||||
|
With<CyberWheel>,
|
||||||
|
>,
|
||||||
|
wheel_config: Res<WheelConfig>,
|
||||||
|
context: Res<RapierContext>,
|
||||||
|
settings: Res<MovementSettings>,
|
||||||
|
input: Res<InputState>,
|
||||||
|
mut gizmos: Gizmos,
|
||||||
|
) {
|
||||||
|
// wheel stuff
|
||||||
|
let radius = wheel_config.radius;
|
||||||
|
|
||||||
|
// inputs
|
||||||
|
let yaw = input.yaw;
|
||||||
|
let throttle = input.throttle * settings.accel;
|
||||||
|
|
||||||
|
for (xform, velocity, mut external_force, mut friction, steering) in wheels_query.iter_mut() {
|
||||||
|
let pos = xform.translation;
|
||||||
|
if let Some((_, projected)) = context.project_point(pos, false, QueryFilter::only_fixed()) {
|
||||||
|
let mut force = Vec3::ZERO;
|
||||||
|
|
||||||
|
gizmos.sphere(projected.point, Quat::IDENTITY, radius, Color::RED);
|
||||||
|
|
||||||
|
let dir = (projected.point - pos).normalize();
|
||||||
|
|
||||||
|
if let Some((_, intersection)) = context.cast_ray_and_get_normal(
|
||||||
|
pos,
|
||||||
|
dir,
|
||||||
|
radius * 1.05,
|
||||||
|
false,
|
||||||
|
QueryFilter::only_fixed(),
|
||||||
|
) {
|
||||||
|
let norm = intersection.normal;
|
||||||
|
let point = intersection.point;
|
||||||
|
|
||||||
|
// do thrust's share
|
||||||
|
let thrust = norm.cross(xform.right().into()) * throttle;
|
||||||
|
force += thrust;
|
||||||
|
|
||||||
|
// do steering's share
|
||||||
|
if steering.is_some() {
|
||||||
|
let thrust = norm.cross(xform.back().into());
|
||||||
|
force += 5.0 * yaw * thrust;
|
||||||
|
}
|
||||||
|
|
||||||
|
let forward = if steering.is_some() {
|
||||||
|
let angle = yaw_to_angle(yaw);
|
||||||
|
let rot = Quat::from_axis_angle(Vec3::Y, angle);
|
||||||
|
Transform::from_rotation(rot).forward()
|
||||||
|
} else {
|
||||||
|
xform.forward()
|
||||||
|
};
|
||||||
|
|
||||||
|
// do the friction's share
|
||||||
|
//
|
||||||
|
// first the brakes
|
||||||
|
if input.brake {
|
||||||
|
friction.coefficient = 2.0;
|
||||||
|
} else {
|
||||||
|
friction.coefficient = 0.0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// now static simulated friction
|
||||||
|
|
||||||
|
let alignment = forward.dot(velocity.linvel);
|
||||||
|
let alignment = if alignment.is_normal() || alignment == 0.0 {
|
||||||
|
alignment
|
||||||
|
} else {
|
||||||
|
1.0
|
||||||
|
};
|
||||||
|
dbg!(alignment);
|
||||||
|
let sign = alignment.signum();
|
||||||
|
let slide = sign * (1.0 - alignment.abs());
|
||||||
|
let perp = forward.cross(norm).normalize();
|
||||||
|
force += slide * perp;
|
||||||
|
|
||||||
|
// show the force
|
||||||
|
#[cfg(feature = "inspector")]
|
||||||
|
gizmos.arrow(pos, pos + force, Color::RED);
|
||||||
|
|
||||||
|
// ok apply the force
|
||||||
|
*external_force = ExternalForce::at_point(force, point, pos);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// General velocity-based drag-force calculation; does not take orientation
|
||||||
|
/// into account.
|
||||||
|
pub(super) fn drag(mut query: Query<(&Velocity, &mut ExternalForce), With<CyberBikeBody>>) {
|
||||||
|
let (vels, mut forces) = query.single_mut();
|
||||||
|
|
||||||
|
if let Some(vel) = vels.linvel.try_normalize() {
|
||||||
|
let v2 = vels.linvel.length_squared();
|
||||||
|
forces.force -= vel * (v2 * 0.02);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// helpers
|
||||||
fn yaw_to_angle(yaw: f32) -> f32 {
|
fn yaw_to_angle(yaw: f32) -> f32 {
|
||||||
let v = yaw.powi(5) * FRAC_PI_4;
|
let v = yaw.powi(5) * FRAC_PI_4;
|
||||||
if v.is_normal() {
|
if v.is_normal() {
|
||||||
|
@ -35,211 +252,3 @@ fn rotate_point(pt: &Vec3, rot: &Quat) -> Vec3 {
|
||||||
// why does this need to be inverted???
|
// why does this need to be inverted???
|
||||||
-Vec3::from_array([rot_qpt.x, rot_qpt.y, rot_qpt.z])
|
-Vec3::from_array([rot_qpt.x, rot_qpt.y, rot_qpt.z])
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(super) fn timestep_setup(mut config: ResMut<RapierConfiguration>) {
|
|
||||||
let ts = TimestepMode::Fixed {
|
|
||||||
dt: 1.0 / 60.0,
|
|
||||||
substeps: 2,
|
|
||||||
};
|
|
||||||
config.timestep_mode = ts;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// The gravity vector points from the cyberbike to the center of the planet.
|
|
||||||
pub(super) fn gravity(
|
|
||||||
mut query: Query<(&Transform, &mut ExternalForce), With<CyberBikeBody>>,
|
|
||||||
settings: Res<MovementSettings>,
|
|
||||||
mut rapier_config: ResMut<RapierConfiguration>,
|
|
||||||
#[cfg(feature = "inspector")] mut debug_instant: ResMut<ActionDebugInstant>,
|
|
||||||
) {
|
|
||||||
let (xform, mut forces) = query.single_mut();
|
|
||||||
|
|
||||||
#[cfg(feature = "inspectorb")]
|
|
||||||
{
|
|
||||||
if debug_instant.elapsed().as_millis() > 6000 {
|
|
||||||
dbg!(&forces);
|
|
||||||
debug_instant.reset();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
rapier_config.gravity = xform.translation.normalize() * -settings.gravity;
|
|
||||||
forces.force = Vec3::ZERO;
|
|
||||||
forces.torque = Vec3::ZERO;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// The desired lean angle, given steering input and speed.
|
|
||||||
pub(super) fn cyber_lean(
|
|
||||||
bike_state: Query<(&Velocity, &Transform), With<CyberBikeBody>>,
|
|
||||||
wheels: Query<&Transform, With<CyberWheel>>,
|
|
||||||
input: Res<InputState>,
|
|
||||||
gravity_settings: Res<MovementSettings>,
|
|
||||||
mut lean: ResMut<CyberLean>,
|
|
||||||
) {
|
|
||||||
let (velocity, xform) = bike_state.single();
|
|
||||||
let vel = velocity.linvel.dot(xform.forward());
|
|
||||||
let v_squared = vel.powi(2);
|
|
||||||
let steering_angle = yaw_to_angle(input.yaw);
|
|
||||||
let wheels: Vec<_> = wheels.iter().map(|w| w.translation).collect();
|
|
||||||
let wheel_base = (wheels[0] - wheels[1]).length();
|
|
||||||
let radius = wheel_base / steering_angle.tan();
|
|
||||||
let gravity = gravity_settings.gravity;
|
|
||||||
let v2_r = v_squared / radius;
|
|
||||||
let tan_theta = (v2_r / gravity).clamp(-FRAC_PI_3, FRAC_PI_3);
|
|
||||||
|
|
||||||
if tan_theta.is_finite() && !tan_theta.is_subnormal() {
|
|
||||||
lean.lean = tan_theta.atan().clamp(-FRAC_PI_4, FRAC_PI_4);
|
|
||||||
} else {
|
|
||||||
lean.lean = 0.0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// PID-based controller for stabilizing attitude; keeps the cyberbike upright.
|
|
||||||
pub(super) fn falling_cat(
|
|
||||||
mut bike_query: Query<(&Transform, &mut ExternalForce, &mut CatControllerState)>,
|
|
||||||
time: Res<Time>,
|
|
||||||
settings: Res<CatControllerSettings>,
|
|
||||||
lean: Res<CyberLean>,
|
|
||||||
) {
|
|
||||||
let (xform, mut forces, mut control_vars) = bike_query.single_mut();
|
|
||||||
let world_up = xform.translation.normalize();
|
|
||||||
let rot = Quat::from_axis_angle(xform.back(), lean.lean);
|
|
||||||
let target_up = rotate_point(&world_up, &rot).normalize();
|
|
||||||
|
|
||||||
let bike_right = xform.right();
|
|
||||||
|
|
||||||
let roll_error = bike_right.dot(target_up);
|
|
||||||
let pitch_error = world_up.dot(xform.back());
|
|
||||||
|
|
||||||
// only try to correct roll if we're not totally vertical
|
|
||||||
if pitch_error.abs() < 0.95 {
|
|
||||||
let (derivative, integral) = control_vars.update_roll(roll_error, time.delta_seconds());
|
|
||||||
let mag =
|
|
||||||
(settings.kp * roll_error) + (settings.ki * integral) + (settings.kd * derivative);
|
|
||||||
if mag.is_finite() {
|
|
||||||
forces.torque += xform.back() * mag;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Apply forces to the cyberbike as a result of input.
|
|
||||||
pub(super) fn input_forces(
|
|
||||||
settings: Res<MovementSettings>,
|
|
||||||
input: Res<InputState>,
|
|
||||||
mut braking_query: Query<&mut MultibodyJoint, (Without<CyberSteering>, With<CyberWheel>)>,
|
|
||||||
mut body_query: Query<
|
|
||||||
(&Transform, &mut ExternalForce),
|
|
||||||
(With<CyberBikeBody>, Without<CyberSteering>),
|
|
||||||
>,
|
|
||||||
mut steering_query: Query<&mut MultibodyJoint, With<CyberSteering>>,
|
|
||||||
) {
|
|
||||||
let (xform, mut forces) = body_query.single_mut();
|
|
||||||
|
|
||||||
// thrust
|
|
||||||
let thrust = xform.forward() * input.throttle * settings.accel;
|
|
||||||
let point = xform.translation + xform.back();
|
|
||||||
let force = ExternalForce::at_point(thrust, point, xform.translation);
|
|
||||||
*forces += force;
|
|
||||||
|
|
||||||
// brake + thrust
|
|
||||||
for mut motor in braking_query.iter_mut() {
|
|
||||||
let factor = if input.brake {
|
|
||||||
500.00
|
|
||||||
} else {
|
|
||||||
input.throttle * settings.accel
|
|
||||||
};
|
|
||||||
let speed = if input.brake { 0.0 } else { -70.0 };
|
|
||||||
motor.data = (*motor
|
|
||||||
.data
|
|
||||||
.as_revolute_mut()
|
|
||||||
.unwrap()
|
|
||||||
.set_motor_max_force(factor)
|
|
||||||
.set_motor_velocity(speed, factor))
|
|
||||||
.into();
|
|
||||||
}
|
|
||||||
|
|
||||||
// steering
|
|
||||||
let angle = yaw_to_angle(input.yaw);
|
|
||||||
let mut steering = steering_query.single_mut();
|
|
||||||
steering.data = (*steering
|
|
||||||
.data
|
|
||||||
.as_revolute_mut()
|
|
||||||
.unwrap()
|
|
||||||
.set_motor_position(-angle, 100.0, 0.5))
|
|
||||||
.into();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Don't let the wheels get stuck underneat the planet
|
|
||||||
pub(super) fn surface_fix(
|
|
||||||
mut commands: Commands,
|
|
||||||
mut wheel_query: Query<
|
|
||||||
(Entity, &Transform, &mut CollisionGroups),
|
|
||||||
(With<CyberWheel>, Without<Tunneling>),
|
|
||||||
>,
|
|
||||||
span_query: Query<&Transform, With<CyberWheel>>,
|
|
||||||
config: Res<WheelConfig>,
|
|
||||||
context: Res<RapierContext>,
|
|
||||||
) {
|
|
||||||
let mut wheels = Vec::new();
|
|
||||||
for xform in span_query.iter() {
|
|
||||||
wheels.push(xform);
|
|
||||||
}
|
|
||||||
let span = (wheels[1].translation - wheels[0].translation).normalize();
|
|
||||||
|
|
||||||
for (entity, xform, mut cgroups) in wheel_query.iter_mut() {
|
|
||||||
//let ray_dir = xform.translation.normalize();
|
|
||||||
let ray_dir = xform.right().cross(span).normalize();
|
|
||||||
if let Some(hit) = context.cast_ray_and_get_normal(
|
|
||||||
xform.translation,
|
|
||||||
ray_dir,
|
|
||||||
config.radius * 1.1,
|
|
||||||
false,
|
|
||||||
QueryFilter::only_fixed(),
|
|
||||||
) {
|
|
||||||
cgroups.memberships = Group::NONE;
|
|
||||||
cgroups.filters = Group::NONE;
|
|
||||||
commands.entity(entity).insert(Tunneling {
|
|
||||||
frames: 3,
|
|
||||||
dir: hit.1.normal,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub(super) fn tunnel_out(
|
|
||||||
mut commands: Commands,
|
|
||||||
mut wheel_query: Query<
|
|
||||||
(
|
|
||||||
Entity,
|
|
||||||
&mut Tunneling,
|
|
||||||
&mut ExternalForce,
|
|
||||||
&mut CollisionGroups,
|
|
||||||
),
|
|
||||||
With<CyberWheel>,
|
|
||||||
>,
|
|
||||||
mprops: Query<&ReadMassProperties, With<CyberBikeBody>>,
|
|
||||||
settings: Res<MovementSettings>,
|
|
||||||
) {
|
|
||||||
let mprops = mprops.single();
|
|
||||||
for (entity, mut tunneling, mut force, mut cgroups) in wheel_query.iter_mut() {
|
|
||||||
if tunneling.frames == 0 {
|
|
||||||
commands.entity(entity).remove::<Tunneling>();
|
|
||||||
force.force = Vec3::ZERO;
|
|
||||||
(cgroups.memberships, cgroups.filters) = BIKE_WHEEL_COLLISION_GROUP;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
tunneling.frames -= 1;
|
|
||||||
force.force = tunneling.dir * settings.gravity * 1.5 * mprops.0.mass;
|
|
||||||
#[cfg(feature = "inspector")]
|
|
||||||
dbg!(&tunneling);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// General velocity-based drag-force calculation; does not take orientation
|
|
||||||
/// into account.
|
|
||||||
pub(super) fn drag(mut query: Query<(&Velocity, &mut ExternalForce), With<CyberBikeBody>>) {
|
|
||||||
let (vels, mut forces) = query.single_mut();
|
|
||||||
|
|
||||||
if let Some(vel) = vels.linvel.try_normalize() {
|
|
||||||
let v2 = vels.linvel.length_squared();
|
|
||||||
forces.force -= vel * (v2 * 0.02);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -8,7 +8,10 @@ use bevy_rapier3d::prelude::{
|
||||||
};
|
};
|
||||||
|
|
||||||
use super::{spawn_wheels, CyberBikeBody, Meshterial, WheelConfig, BIKE_BODY_COLLISION_GROUP};
|
use super::{spawn_wheels, CyberBikeBody, Meshterial, WheelConfig, BIKE_BODY_COLLISION_GROUP};
|
||||||
use crate::{action::CatControllerState, planet::PLANET_RADIUS};
|
use crate::{
|
||||||
|
action::{CatControllerState, PreviousVelocity},
|
||||||
|
planet::PLANET_RADIUS,
|
||||||
|
};
|
||||||
|
|
||||||
pub(super) fn spawn_cyberbike(
|
pub(super) fn spawn_cyberbike(
|
||||||
mut commands: Commands,
|
mut commands: Commands,
|
||||||
|
@ -16,13 +19,12 @@ pub(super) fn spawn_cyberbike(
|
||||||
wheel_conf: Res<WheelConfig>,
|
wheel_conf: Res<WheelConfig>,
|
||||||
mut meshterials: Meshterial,
|
mut meshterials: Meshterial,
|
||||||
) {
|
) {
|
||||||
let altitude = PLANET_RADIUS - 10.0;
|
let altitude = 3.0;
|
||||||
|
|
||||||
let mut xform = Transform::from_translation(Vec3::X * altitude)
|
let mut xform = Transform::from_translation(Vec3::Y * altitude);
|
||||||
.with_rotation(Quat::from_axis_angle(Vec3::Z, -89.0f32.to_radians()));
|
|
||||||
|
|
||||||
let right = xform.right() * 350.0;
|
// let right = xform.right() * 350.0;
|
||||||
xform.translation += right;
|
// xform.translation += right;
|
||||||
|
|
||||||
let damping = Damping {
|
let damping = Damping {
|
||||||
angular_damping: 2.0,
|
angular_damping: 2.0,
|
||||||
|
@ -64,6 +66,7 @@ pub(super) fn spawn_cyberbike(
|
||||||
Sleeping::disabled(),
|
Sleeping::disabled(),
|
||||||
Ccd { enabled: true },
|
Ccd { enabled: true },
|
||||||
ReadMassProperties::default(),
|
ReadMassProperties::default(),
|
||||||
|
PreviousVelocity::default(),
|
||||||
))
|
))
|
||||||
.insert(TransformInterpolation {
|
.insert(TransformInterpolation {
|
||||||
start: None,
|
start: None,
|
||||||
|
|
|
@ -22,7 +22,6 @@ pub struct WheelConfig {
|
||||||
pub stiffness: f32,
|
pub stiffness: f32,
|
||||||
pub damping: f32,
|
pub damping: f32,
|
||||||
pub radius: f32,
|
pub radius: f32,
|
||||||
pub thickness: f32,
|
|
||||||
pub friction: f32,
|
pub friction: f32,
|
||||||
pub restitution: f32,
|
pub restitution: f32,
|
||||||
pub density: f32,
|
pub density: f32,
|
||||||
|
@ -35,11 +34,10 @@ impl Default for WheelConfig {
|
||||||
rear_back: 1.0,
|
rear_back: 1.0,
|
||||||
y: -0.1,
|
y: -0.1,
|
||||||
limits: [-0.5, 0.1],
|
limits: [-0.5, 0.1],
|
||||||
stiffness: 190.0,
|
stiffness: 30.0,
|
||||||
damping: 8.0,
|
damping: 8.0,
|
||||||
radius: 0.25,
|
radius: 0.3,
|
||||||
thickness: 0.11,
|
friction: 0.0,
|
||||||
friction: 1.2,
|
|
||||||
restitution: 0.95,
|
restitution: 0.95,
|
||||||
density: 0.05,
|
density: 0.05,
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,17 +1,16 @@
|
||||||
mod body;
|
mod body;
|
||||||
mod components;
|
mod components;
|
||||||
|
//mod controller;
|
||||||
mod wheels;
|
mod wheels;
|
||||||
|
|
||||||
use bevy::prelude::{
|
use bevy::prelude::{App, Assets, Mesh, Plugin, PostStartup, ResMut, StandardMaterial};
|
||||||
App, Assets, IntoSystemConfig, Mesh, Plugin, ResMut, StandardMaterial, StartupSet,
|
|
||||||
};
|
|
||||||
use bevy_rapier3d::prelude::Group;
|
use bevy_rapier3d::prelude::Group;
|
||||||
|
|
||||||
pub(crate) use self::components::*;
|
pub(crate) use self::components::*;
|
||||||
use self::{body::spawn_cyberbike, wheels::spawn_wheels};
|
use self::{body::spawn_cyberbike, wheels::spawn_wheels};
|
||||||
|
|
||||||
pub const BIKE_BODY_COLLISION_GROUP: (Group, Group) = (Group::GROUP_1, Group::GROUP_1);
|
pub const BIKE_BODY_COLLISION_GROUP: (Group, Group) = (Group::GROUP_1, Group::GROUP_1);
|
||||||
pub const BIKE_WHEEL_COLLISION_GROUP: (Group, Group) = (Group::GROUP_10, Group::GROUP_10);
|
pub const BIKE_WHEEL_COLLISION_GROUP: (Group, Group) = (Group::GROUP_2, Group::GROUP_2);
|
||||||
|
|
||||||
type Meshterial<'a> = (
|
type Meshterial<'a> = (
|
||||||
ResMut<'a, Assets<Mesh>>,
|
ResMut<'a, Assets<Mesh>>,
|
||||||
|
@ -23,6 +22,6 @@ impl Plugin for CyberBikePlugin {
|
||||||
fn build(&self, app: &mut App) {
|
fn build(&self, app: &mut App) {
|
||||||
app.insert_resource(WheelConfig::default())
|
app.insert_resource(WheelConfig::default())
|
||||||
.register_type::<WheelConfig>()
|
.register_type::<WheelConfig>()
|
||||||
.add_startup_system(spawn_cyberbike.in_base_set(StartupSet::PostStartup));
|
.add_systems(PostStartup, spawn_cyberbike);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,35 +1,35 @@
|
||||||
use bevy::prelude::{shape::Torus as Tire, *};
|
use bevy::prelude::*;
|
||||||
use bevy_rapier3d::prelude::{
|
use bevy_rapier3d::{
|
||||||
Ccd, CoefficientCombineRule, Collider, ColliderMassProperties, CollisionGroups, Damping,
|
dynamics::{Ccd, FixedJointBuilder, Velocity},
|
||||||
ExternalForce, Friction, MultibodyJoint, PrismaticJointBuilder, Restitution,
|
geometry::{Collider, CollisionGroups, Friction},
|
||||||
RevoluteJointBuilder, RigidBody, Sleeping, TransformInterpolation,
|
prelude::{
|
||||||
|
ColliderMassProperties, ExternalForce, MultibodyJoint, PrismaticJointBuilder, RigidBody,
|
||||||
|
Sleeping, TransformInterpolation,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
use super::{CyberSteering, CyberWheel, Meshterial, WheelConfig, BIKE_WHEEL_COLLISION_GROUP};
|
use super::{CyberSteering, CyberWheel, Meshterial, WheelConfig, BIKE_WHEEL_COLLISION_GROUP};
|
||||||
|
use crate::action::PreviousVelocity;
|
||||||
|
|
||||||
pub fn spawn_wheels(
|
pub(crate) fn spawn_wheels(
|
||||||
commands: &mut Commands,
|
commands: &mut Commands,
|
||||||
bike: Entity,
|
bike: Entity,
|
||||||
conf: &WheelConfig,
|
conf: &WheelConfig,
|
||||||
meshterials: &mut Meshterial,
|
meshterials: &mut Meshterial,
|
||||||
) {
|
) {
|
||||||
let (membership, filter) = BIKE_WHEEL_COLLISION_GROUP;
|
|
||||||
let wheels_collision_group = CollisionGroups::new(membership, filter);
|
|
||||||
let wheel_y = conf.y;
|
let wheel_y = conf.y;
|
||||||
let stiffness = conf.stiffness;
|
let stiffness = conf.stiffness;
|
||||||
let not_sleeping = Sleeping::disabled();
|
let not_sleeping = Sleeping::disabled();
|
||||||
let ccd = Ccd { enabled: true };
|
|
||||||
let limits = conf.limits;
|
let limits = conf.limits;
|
||||||
let (meshes, materials) = meshterials;
|
let (meshes, materials) = meshterials;
|
||||||
let rake_vec: Vec3 = Vec3::new(0.0, 1.0, 0.57).normalize(); // about 30 degrees of rake
|
//let rake_vec: Vec3 = Vec3::new(0.0, 1.0, 0.57).normalize(); // about 30
|
||||||
|
// degrees of rake
|
||||||
let friction = Friction {
|
|
||||||
coefficient: conf.friction,
|
|
||||||
combine_rule: CoefficientCombineRule::Average,
|
|
||||||
};
|
|
||||||
|
|
||||||
let mut wheel_poses = Vec::with_capacity(2);
|
let mut wheel_poses = Vec::with_capacity(2);
|
||||||
|
|
||||||
|
let (membership, filter) = BIKE_WHEEL_COLLISION_GROUP;
|
||||||
|
let wheels_collision_group = CollisionGroups::new(membership, filter);
|
||||||
|
|
||||||
// front
|
// front
|
||||||
{
|
{
|
||||||
let wheel_x = 0.0;
|
let wheel_x = 0.0;
|
||||||
|
@ -47,17 +47,12 @@ pub fn spawn_wheels(
|
||||||
}
|
}
|
||||||
|
|
||||||
for (offset, steering) in wheel_poses {
|
for (offset, steering) in wheel_poses {
|
||||||
let (mesh, collider) = gen_tires(conf);
|
let mesh = gen_tires(conf);
|
||||||
|
|
||||||
let material = StandardMaterial {
|
let material = StandardMaterial {
|
||||||
base_color: Color::Rgba {
|
base_color: Color::YELLOW,
|
||||||
red: 0.01,
|
|
||||||
green: 0.01,
|
|
||||||
blue: 0.01,
|
|
||||||
alpha: 1.0,
|
|
||||||
},
|
|
||||||
alpha_mode: AlphaMode::Opaque,
|
alpha_mode: AlphaMode::Opaque,
|
||||||
perceptual_roughness: 0.5,
|
perceptual_roughness: 0.1,
|
||||||
..Default::default()
|
..Default::default()
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -71,7 +66,8 @@ pub fn spawn_wheels(
|
||||||
let suspension_damping = conf.damping;
|
let suspension_damping = conf.damping;
|
||||||
|
|
||||||
let suspension_axis = if steering.is_some() {
|
let suspension_axis = if steering.is_some() {
|
||||||
rake_vec
|
// rake_vec
|
||||||
|
Vec3::Y
|
||||||
} else {
|
} else {
|
||||||
Vec3::Y
|
Vec3::Y
|
||||||
};
|
};
|
||||||
|
@ -87,91 +83,47 @@ pub fn spawn_wheels(
|
||||||
.insert(not_sleeping)
|
.insert(not_sleeping)
|
||||||
.id();
|
.id();
|
||||||
|
|
||||||
let axel_parent_entity = if let Some(steering) = steering {
|
let axel_parent_entity = if steering.is_some() {
|
||||||
let neck_builder =
|
let neck_builder = FixedJointBuilder::new().local_anchor1(Vec3::new(0.0, 0.0, 0.1)); // this adds another 0.1m of trail
|
||||||
RevoluteJointBuilder::new(rake_vec).local_anchor1(Vec3::new(0.0, 0.0, 0.1)); // this adds another 0.1m of trail
|
|
||||||
let neck_joint = MultibodyJoint::new(fork_rb_entity, neck_builder);
|
let neck_joint = MultibodyJoint::new(fork_rb_entity, neck_builder);
|
||||||
let neck = commands
|
let neck = commands.spawn(RigidBody::Dynamic).insert(neck_joint).id();
|
||||||
.spawn(RigidBody::Dynamic)
|
|
||||||
.insert(neck_joint)
|
|
||||||
.insert(steering)
|
|
||||||
.insert(not_sleeping)
|
|
||||||
.id();
|
|
||||||
neck
|
neck
|
||||||
} else {
|
} else {
|
||||||
fork_rb_entity
|
fork_rb_entity
|
||||||
};
|
};
|
||||||
|
|
||||||
let axel_builder = RevoluteJointBuilder::new(Vec3::X);
|
let axel_builder = FixedJointBuilder::new();
|
||||||
let axel_joint = MultibodyJoint::new(axel_parent_entity, axel_builder);
|
let axel_joint = MultibodyJoint::new(axel_parent_entity, axel_builder);
|
||||||
let wheel_damping = Damping {
|
|
||||||
linear_damping: 0.8,
|
|
||||||
..Default::default()
|
|
||||||
};
|
|
||||||
|
|
||||||
commands.spawn(pbr_bundle).insert((
|
let c = &mut commands.spawn(pbr_bundle);
|
||||||
collider,
|
c.insert((
|
||||||
mass_props,
|
mass_props,
|
||||||
wheel_damping,
|
|
||||||
ccd,
|
|
||||||
not_sleeping,
|
|
||||||
axel_joint,
|
axel_joint,
|
||||||
wheels_collision_group,
|
|
||||||
friction,
|
|
||||||
CyberWheel,
|
CyberWheel,
|
||||||
|
not_sleeping,
|
||||||
|
Velocity::default(),
|
||||||
|
PreviousVelocity::default(),
|
||||||
ExternalForce::default(),
|
ExternalForce::default(),
|
||||||
Restitution::new(conf.restitution),
|
|
||||||
SpatialBundle::default(),
|
SpatialBundle::default(),
|
||||||
TransformInterpolation::default(),
|
TransformInterpolation::default(),
|
||||||
RigidBody::Dynamic,
|
RigidBody::Dynamic,
|
||||||
|
Ccd { enabled: true },
|
||||||
|
Friction {
|
||||||
|
coefficient: 0.0,
|
||||||
|
combine_rule: bevy_rapier3d::dynamics::CoefficientCombineRule::Min,
|
||||||
|
},
|
||||||
|
wheels_collision_group,
|
||||||
|
Collider::ball(conf.radius),
|
||||||
));
|
));
|
||||||
|
if steering.is_some() {
|
||||||
|
c.insert(CyberSteering);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// do mesh shit
|
// do mesh shit
|
||||||
fn gen_tires(conf: &WheelConfig) -> (Mesh, Collider) {
|
fn gen_tires(conf: &WheelConfig) -> Mesh {
|
||||||
let wheel_rad = conf.radius;
|
let wheel_rad = conf.radius;
|
||||||
let tire_thickness = conf.thickness;
|
let tire = Sphere::new(wheel_rad);
|
||||||
let tire = Tire {
|
Mesh::from(tire)
|
||||||
radius: wheel_rad,
|
|
||||||
ring_radius: tire_thickness,
|
|
||||||
..Default::default()
|
|
||||||
};
|
|
||||||
|
|
||||||
let mut mesh = Mesh::from(tire);
|
|
||||||
let tire_verts = mesh
|
|
||||||
.attribute(Mesh::ATTRIBUTE_POSITION)
|
|
||||||
.unwrap()
|
|
||||||
.as_float3()
|
|
||||||
.unwrap()
|
|
||||||
.iter()
|
|
||||||
.map(|v| {
|
|
||||||
//
|
|
||||||
let v = Vec3::from_array(*v);
|
|
||||||
let m = Mat3::from_rotation_z(90.0f32.to_radians());
|
|
||||||
let p = m.mul_vec3(v);
|
|
||||||
p.to_array()
|
|
||||||
})
|
|
||||||
.collect::<Vec<[f32; 3]>>();
|
|
||||||
mesh.remove_attribute(Mesh::ATTRIBUTE_POSITION);
|
|
||||||
mesh.insert_attribute(Mesh::ATTRIBUTE_POSITION, tire_verts);
|
|
||||||
|
|
||||||
let mut idxs = Vec::new();
|
|
||||||
let indices = mesh.indices().unwrap().iter().collect::<Vec<_>>();
|
|
||||||
for idx in indices.as_slice().chunks_exact(3) {
|
|
||||||
idxs.push([idx[0] as u32, idx[1] as u32, idx[2] as u32]);
|
|
||||||
}
|
|
||||||
let wheel_collider = Collider::convex_decomposition(
|
|
||||||
&mesh
|
|
||||||
.attribute(Mesh::ATTRIBUTE_POSITION)
|
|
||||||
.unwrap()
|
|
||||||
.as_float3()
|
|
||||||
.unwrap()
|
|
||||||
.iter()
|
|
||||||
.map(|v| Vec3::from_array(*v))
|
|
||||||
.collect::<Vec<_>>(),
|
|
||||||
&idxs,
|
|
||||||
);
|
|
||||||
|
|
||||||
(mesh, wheel_collider)
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -67,7 +67,7 @@ fn follow_cyberbike(
|
||||||
offset: Res<DebugCamOffset>,
|
offset: Res<DebugCamOffset>,
|
||||||
) {
|
) {
|
||||||
let bike_xform = *query.p0().single();
|
let bike_xform = *query.p0().single();
|
||||||
let up = bike_xform.translation.normalize();
|
let up = Vec3::Y; //bike_xform.translation.normalize();
|
||||||
|
|
||||||
for (mut cam_xform, cam_type) in query.p1().iter_mut() {
|
for (mut cam_xform, cam_type) in query.p1().iter_mut() {
|
||||||
match *cam_type {
|
match *cam_type {
|
||||||
|
@ -81,7 +81,7 @@ fn follow_cyberbike(
|
||||||
// handle input pitch
|
// handle input pitch
|
||||||
let angle = input.pitch.powi(3) * MAX_PITCH;
|
let angle = input.pitch.powi(3) * MAX_PITCH;
|
||||||
let axis = cam_xform.right();
|
let axis = cam_xform.right();
|
||||||
cam_xform.rotate(Quat::from_axis_angle(axis, angle));
|
cam_xform.rotate(Quat::from_axis_angle(*axis, angle));
|
||||||
}
|
}
|
||||||
CyberCameras::Debug => {
|
CyberCameras::Debug => {
|
||||||
let mut ncx = bike_xform.to_owned();
|
let mut ncx = bike_xform.to_owned();
|
||||||
|
@ -101,7 +101,7 @@ fn update_active_camera(
|
||||||
) {
|
) {
|
||||||
// find the camera with the current state, set it as the ActiveCamera
|
// find the camera with the current state, set it as the ActiveCamera
|
||||||
query.iter_mut().for_each(|(mut cam, cyber)| {
|
query.iter_mut().for_each(|(mut cam, cyber)| {
|
||||||
if cyber.eq(&state.0) {
|
if cyber.eq(&state.get()) {
|
||||||
cam.is_active = true;
|
cam.is_active = true;
|
||||||
} else {
|
} else {
|
||||||
cam.is_active = false;
|
cam.is_active = false;
|
||||||
|
@ -112,13 +112,13 @@ fn update_active_camera(
|
||||||
fn cycle_cam_state(
|
fn cycle_cam_state(
|
||||||
state: Res<State<CyberCameras>>,
|
state: Res<State<CyberCameras>>,
|
||||||
mut next: ResMut<NextState<CyberCameras>>,
|
mut next: ResMut<NextState<CyberCameras>>,
|
||||||
mut keys: ResMut<Input<KeyCode>>,
|
mut keys: ResMut<ButtonInput<KeyCode>>,
|
||||||
) {
|
) {
|
||||||
if keys.just_pressed(KeyCode::D) {
|
if keys.just_pressed(KeyCode::KeyD) {
|
||||||
let new_state = state.0.next();
|
let new_state = state.get().next();
|
||||||
info!("{:?}", new_state);
|
info!("{:?}", new_state);
|
||||||
next.set(new_state);
|
next.set(new_state);
|
||||||
keys.reset(KeyCode::D);
|
keys.reset(KeyCode::KeyD);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -132,9 +132,10 @@ impl Plugin for CyberCamPlugin {
|
||||||
|
|
||||||
fn common(app: &mut bevy::prelude::App) {
|
fn common(app: &mut bevy::prelude::App) {
|
||||||
app.insert_resource(DebugCamOffset::default())
|
app.insert_resource(DebugCamOffset::default())
|
||||||
.add_startup_system(setup_cybercams)
|
.add_systems(Startup, setup_cybercams)
|
||||||
.add_state::<CyberCameras>()
|
.init_state::<CyberCameras>()
|
||||||
.add_system(cycle_cam_state)
|
.add_systems(
|
||||||
.add_system(update_active_camera)
|
Update,
|
||||||
.add_system(follow_cyberbike);
|
(cycle_cam_state, update_active_camera, follow_cyberbike),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,16 +19,17 @@ impl Plugin for CyberGlamorPlugin {
|
||||||
let mode = DebugRenderMode::CONTACTS
|
let mode = DebugRenderMode::CONTACTS
|
||||||
| DebugRenderMode::SOLVER_CONTACTS
|
| DebugRenderMode::SOLVER_CONTACTS
|
||||||
| DebugRenderMode::JOINTS
|
| DebugRenderMode::JOINTS
|
||||||
|
| DebugRenderMode::COLLIDER_SHAPES
|
||||||
| DebugRenderMode::RIGID_BODY_AXES;
|
| DebugRenderMode::RIGID_BODY_AXES;
|
||||||
|
|
||||||
let rplugin = RapierDebugRenderPlugin {
|
let rplugin = RapierDebugRenderPlugin {
|
||||||
style,
|
style,
|
||||||
always_on_top: true,
|
// always_on_top: true,
|
||||||
enabled: true,
|
enabled: true,
|
||||||
mode,
|
mode,
|
||||||
};
|
};
|
||||||
|
|
||||||
app.add_plugin(rplugin);
|
app.add_plugins(rplugin);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
22
src/input.rs
22
src/input.rs
|
@ -14,22 +14,22 @@ pub(crate) struct InputState {
|
||||||
pub pitch: f32,
|
pub pitch: f32,
|
||||||
}
|
}
|
||||||
|
|
||||||
fn update_debug_cam(mut offset: ResMut<DebugCamOffset>, mut keys: ResMut<Input<KeyCode>>) {
|
fn update_debug_cam(mut offset: ResMut<DebugCamOffset>, mut keys: ResMut<ButtonInput<KeyCode>>) {
|
||||||
let keyset: HashSet<_> = keys.get_pressed().collect();
|
let keyset: HashSet<_> = keys.get_pressed().collect();
|
||||||
let shifted = keyset.contains(&KeyCode::LShift) || keyset.contains(&KeyCode::RShift);
|
let shifted = keyset.contains(&KeyCode::ShiftLeft) || keyset.contains(&KeyCode::ShiftRight);
|
||||||
|
|
||||||
for key in keyset {
|
for key in keyset {
|
||||||
match key {
|
match key {
|
||||||
KeyCode::Left => offset.rot -= 5.0,
|
KeyCode::ArrowLeft => offset.rot -= 5.0,
|
||||||
KeyCode::Right => offset.rot += 5.0,
|
KeyCode::ArrowRight => offset.rot += 5.0,
|
||||||
KeyCode::Up => {
|
KeyCode::ArrowUp => {
|
||||||
if shifted {
|
if shifted {
|
||||||
offset.alt += 0.5;
|
offset.alt += 0.5;
|
||||||
} else {
|
} else {
|
||||||
offset.dist -= 0.5;
|
offset.dist -= 0.5;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
KeyCode::Down => {
|
KeyCode::ArrowDown => {
|
||||||
if shifted {
|
if shifted {
|
||||||
offset.alt -= 0.5;
|
offset.alt -= 0.5;
|
||||||
} else {
|
} else {
|
||||||
|
@ -41,16 +41,17 @@ fn update_debug_cam(mut offset: ResMut<DebugCamOffset>, mut keys: ResMut<Input<K
|
||||||
}
|
}
|
||||||
|
|
||||||
if keys.get_just_released().len() > 0 {
|
if keys.get_just_released().len() > 0 {
|
||||||
let unpressed = keys.just_released(KeyCode::LShift) || keys.just_released(KeyCode::RShift);
|
let unpressed =
|
||||||
|
keys.just_released(KeyCode::ShiftLeft) || keys.just_released(KeyCode::ShiftRight);
|
||||||
keys.reset_all();
|
keys.reset_all();
|
||||||
if shifted && !unpressed {
|
if shifted && !unpressed {
|
||||||
keys.press(KeyCode::LShift);
|
keys.press(KeyCode::ShiftLeft);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn update_input(mut events: EventReader<GamepadEvent>, mut istate: ResMut<InputState>) {
|
fn update_input(mut events: EventReader<GamepadEvent>, mut istate: ResMut<InputState>) {
|
||||||
for pad_event in events.iter() {
|
for pad_event in events.read() {
|
||||||
match pad_event {
|
match pad_event {
|
||||||
GamepadEvent::Button(button_event) => {
|
GamepadEvent::Button(button_event) => {
|
||||||
let GamepadButtonChangedEvent {
|
let GamepadButtonChangedEvent {
|
||||||
|
@ -92,7 +93,6 @@ pub struct CyberInputPlugin;
|
||||||
impl Plugin for CyberInputPlugin {
|
impl Plugin for CyberInputPlugin {
|
||||||
fn build(&self, app: &mut App) {
|
fn build(&self, app: &mut App) {
|
||||||
app.init_resource::<InputState>()
|
app.init_resource::<InputState>()
|
||||||
.add_system(update_input)
|
.add_systems(Update, (update_input, update_debug_cam));
|
||||||
.add_system(update_debug_cam);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,7 @@ use bevy::{pbr::CascadeShadowConfigBuilder, prelude::*};
|
||||||
|
|
||||||
use crate::planet::PLANET_RADIUS;
|
use crate::planet::PLANET_RADIUS;
|
||||||
|
|
||||||
pub const LIGHT_RANGE: f32 = 90.0;
|
pub const LIGHT_RANGE: f32 = 900.0;
|
||||||
|
|
||||||
fn spawn_static_lights(
|
fn spawn_static_lights(
|
||||||
mut commands: Commands,
|
mut commands: Commands,
|
||||||
|
@ -10,88 +10,37 @@ fn spawn_static_lights(
|
||||||
mut materials: ResMut<Assets<StandardMaterial>>,
|
mut materials: ResMut<Assets<StandardMaterial>>,
|
||||||
) {
|
) {
|
||||||
let pink_light = PointLight {
|
let pink_light = PointLight {
|
||||||
intensity: 1_00.0,
|
intensity: 10_00.0,
|
||||||
range: LIGHT_RANGE,
|
range: LIGHT_RANGE,
|
||||||
color: Color::PINK,
|
color: Color::WHITE,
|
||||||
radius: 1.0,
|
radius: 10.0,
|
||||||
shadows_enabled: true,
|
|
||||||
..Default::default()
|
|
||||||
};
|
|
||||||
|
|
||||||
let blue_light = PointLight {
|
|
||||||
intensity: 1_000.0,
|
|
||||||
range: LIGHT_RANGE,
|
|
||||||
color: Color::BLUE,
|
|
||||||
radius: 1.0,
|
|
||||||
shadows_enabled: true,
|
shadows_enabled: true,
|
||||||
..Default::default()
|
..Default::default()
|
||||||
};
|
};
|
||||||
|
|
||||||
commands.insert_resource(AmbientLight {
|
commands.insert_resource(AmbientLight {
|
||||||
color: Color::WHITE,
|
color: Color::WHITE,
|
||||||
brightness: 0.2,
|
brightness: 100.0,
|
||||||
});
|
});
|
||||||
|
|
||||||
let _cascade_shadow_config = CascadeShadowConfigBuilder {
|
// let _cascade_shadow_config = CascadeShadowConfigBuilder {
|
||||||
first_cascade_far_bound: 0.3,
|
// first_cascade_far_bound: 0.3,
|
||||||
maximum_distance: 3.0,
|
// maximum_distance: 3.0,
|
||||||
..default()
|
// ..default()
|
||||||
}
|
// }
|
||||||
.build();
|
// .build();
|
||||||
|
|
||||||
// up light
|
// up light
|
||||||
commands
|
commands.spawn(PointLightBundle {
|
||||||
.spawn(PointLightBundle {
|
transform: Transform::from_xyz(0.0, 100.0, 0.0),
|
||||||
transform: Transform::from_xyz(0.0, PLANET_RADIUS + 30.0, 0.0),
|
|
||||||
point_light: pink_light,
|
point_light: pink_light,
|
||||||
..Default::default()
|
..Default::default()
|
||||||
})
|
|
||||||
.with_children(|builder| {
|
|
||||||
builder.spawn(PbrBundle {
|
|
||||||
mesh: meshes.add(
|
|
||||||
Mesh::try_from(shape::Icosphere {
|
|
||||||
radius: 10.0,
|
|
||||||
subdivisions: 2,
|
|
||||||
})
|
|
||||||
.unwrap(),
|
|
||||||
),
|
|
||||||
material: materials.add(StandardMaterial {
|
|
||||||
base_color: Color::BLUE,
|
|
||||||
emissive: Color::PINK,
|
|
||||||
..Default::default()
|
|
||||||
}),
|
|
||||||
..Default::default()
|
|
||||||
});
|
|
||||||
});
|
|
||||||
// down light
|
|
||||||
commands
|
|
||||||
.spawn(PointLightBundle {
|
|
||||||
transform: Transform::from_xyz(0.0, -PLANET_RADIUS - 30.0, 0.0),
|
|
||||||
point_light: blue_light,
|
|
||||||
..Default::default()
|
|
||||||
})
|
|
||||||
.with_children(|builder| {
|
|
||||||
builder.spawn(PbrBundle {
|
|
||||||
mesh: meshes.add(
|
|
||||||
Mesh::try_from(shape::Icosphere {
|
|
||||||
radius: 10.0,
|
|
||||||
subdivisions: 2,
|
|
||||||
})
|
|
||||||
.unwrap(),
|
|
||||||
),
|
|
||||||
material: materials.add(StandardMaterial {
|
|
||||||
base_color: Color::PINK,
|
|
||||||
emissive: Color::BLUE,
|
|
||||||
..Default::default()
|
|
||||||
}),
|
|
||||||
..Default::default()
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct CyberSpaceLightsPlugin;
|
pub struct CyberSpaceLightsPlugin;
|
||||||
impl Plugin for CyberSpaceLightsPlugin {
|
impl Plugin for CyberSpaceLightsPlugin {
|
||||||
fn build(&self, app: &mut App) {
|
fn build(&self, app: &mut App) {
|
||||||
app.add_startup_system(spawn_static_lights);
|
app.add_systems(Startup, spawn_static_lights);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
22
src/main.rs
22
src/main.rs
|
@ -21,18 +21,20 @@ fn main() {
|
||||||
}),
|
}),
|
||||||
..Default::default()
|
..Default::default()
|
||||||
}))
|
}))
|
||||||
.add_plugin(CyberPlanetPlugin)
|
.add_plugins((
|
||||||
.add_plugin(CyberInputPlugin)
|
CyberPlanetPlugin,
|
||||||
.add_plugin(CyberActionPlugin)
|
CyberInputPlugin,
|
||||||
.add_plugin(CyberCamPlugin)
|
CyberActionPlugin,
|
||||||
.add_plugin(CyberSpaceLightsPlugin)
|
CyberCamPlugin,
|
||||||
.add_plugin(CyberUIPlugin)
|
CyberSpaceLightsPlugin,
|
||||||
.add_plugin(CyberBikePlugin)
|
CyberUIPlugin,
|
||||||
.add_startup_system(disable_mouse_trap)
|
CyberBikePlugin,
|
||||||
.add_system(bevy::window::close_on_esc);
|
))
|
||||||
|
.add_systems(Startup, disable_mouse_trap)
|
||||||
|
.add_systems(Update, bevy::window::close_on_esc);
|
||||||
|
|
||||||
#[cfg(feature = "inspector")]
|
#[cfg(feature = "inspector")]
|
||||||
app.add_plugin(CyberGlamorPlugin);
|
app.add_plugins(CyberGlamorPlugin);
|
||||||
|
|
||||||
app.run();
|
app.run();
|
||||||
}
|
}
|
||||||
|
|
111
src/planet.rs
111
src/planet.rs
|
@ -1,14 +1,8 @@
|
||||||
use bevy::{
|
use bevy::{prelude::*, render::color::Color};
|
||||||
prelude::{shape::Icosphere, *},
|
|
||||||
render::{color::Color, mesh::Indices},
|
|
||||||
};
|
|
||||||
use bevy_rapier3d::prelude::*;
|
use bevy_rapier3d::prelude::*;
|
||||||
use hexasphere::shapes::IcoSphere;
|
// use noise::{HybridMulti, NoiseFn, SuperSimplex};
|
||||||
use noise::{HybridMulti, NoiseFn, SuperSimplex};
|
|
||||||
use rand::{Rng, SeedableRng};
|
|
||||||
use wgpu::PrimitiveTopology;
|
|
||||||
|
|
||||||
pub const PLANET_RADIUS: f32 = 4_000.0;
|
pub const PLANET_RADIUS: f32 = 2_000.0;
|
||||||
pub const PLANET_HUE: f32 = 31.0;
|
pub const PLANET_HUE: f32 = 31.0;
|
||||||
pub const PLANET_SATURATION: f32 = 1.0;
|
pub const PLANET_SATURATION: f32 = 1.0;
|
||||||
|
|
||||||
|
@ -21,14 +15,10 @@ fn spawn_planet(
|
||||||
mut materials: ResMut<Assets<StandardMaterial>>,
|
mut materials: ResMut<Assets<StandardMaterial>>,
|
||||||
) {
|
) {
|
||||||
//let color = Color::rgb(0.74, 0.5334, 0.176);
|
//let color = Color::rgb(0.74, 0.5334, 0.176);
|
||||||
let isphere = Icosphere {
|
|
||||||
radius: PLANET_RADIUS,
|
|
||||||
subdivisions: 88,
|
|
||||||
};
|
|
||||||
|
|
||||||
let (mesh, shape) = gen_planet(isphere);
|
let (mesh, shape) = gen_planet(2999.9);
|
||||||
|
|
||||||
let pbody = (RigidBody::Fixed, Ccd { enabled: true });
|
let pbody = (RigidBody::Fixed, Transform::from_xyz(0.0, 0.1, 0.0));
|
||||||
|
|
||||||
let pcollide = (
|
let pcollide = (
|
||||||
shape,
|
shape,
|
||||||
|
@ -37,12 +27,19 @@ fn spawn_planet(
|
||||||
..Default::default()
|
..Default::default()
|
||||||
},
|
},
|
||||||
Restitution::new(0.8),
|
Restitution::new(0.8),
|
||||||
|
Transform::from_xyz(0.0, 1.0, 0.0),
|
||||||
|
CollisionGroups::default(), // all colliders
|
||||||
|
Ccd { enabled: true },
|
||||||
);
|
);
|
||||||
|
|
||||||
commands
|
commands
|
||||||
.spawn(PbrBundle {
|
.spawn(PbrBundle {
|
||||||
mesh: meshes.add(mesh),
|
mesh: meshes.add(mesh),
|
||||||
material: materials.add(Color::WHITE.into()),
|
material: materials.add(StandardMaterial {
|
||||||
|
base_color: Color::GREEN,
|
||||||
|
..Default::default()
|
||||||
|
}),
|
||||||
|
transform: Transform::from_xyz(0.0, 0.1, 0.0),
|
||||||
..Default::default()
|
..Default::default()
|
||||||
})
|
})
|
||||||
.insert(pbody)
|
.insert(pbody)
|
||||||
|
@ -53,7 +50,7 @@ fn spawn_planet(
|
||||||
pub struct CyberPlanetPlugin;
|
pub struct CyberPlanetPlugin;
|
||||||
impl Plugin for CyberPlanetPlugin {
|
impl Plugin for CyberPlanetPlugin {
|
||||||
fn build(&self, app: &mut App) {
|
fn build(&self, app: &mut App) {
|
||||||
app.add_startup_system(spawn_planet);
|
app.add_systems(Startup, spawn_planet);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -61,82 +58,10 @@ impl Plugin for CyberPlanetPlugin {
|
||||||
// utils
|
// utils
|
||||||
//---------------------------------------------------------------------
|
//---------------------------------------------------------------------
|
||||||
|
|
||||||
fn gen_planet(sphere: Icosphere) -> (Mesh, Collider) {
|
fn gen_planet(span: f32) -> (Mesh, Collider) {
|
||||||
// straight-up stolen from Bevy's impl of Mesh from Icosphere, so I can do the
|
let mut mesh = Cuboid::new(span, 1.0, span);
|
||||||
// displacement before normals are calculated.
|
|
||||||
let generated = IcoSphere::new(sphere.subdivisions, |point| {
|
|
||||||
let inclination = point.y.acos();
|
|
||||||
let azimuth = point.z.atan2(point.x);
|
|
||||||
|
|
||||||
let norm_inclination = inclination / std::f32::consts::PI;
|
let collider = Collider::cuboid(span / 2.0, 0.5, span / 2.0);
|
||||||
let norm_azimuth = 0.5 - (azimuth / std::f32::consts::TAU);
|
|
||||||
|
|
||||||
[norm_azimuth, norm_inclination]
|
(mesh.mesh(), collider)
|
||||||
});
|
|
||||||
|
|
||||||
let noise = HybridMulti::<SuperSimplex>::default();
|
|
||||||
|
|
||||||
let (mut min, mut max) = (f32::MAX, f32::MIN);
|
|
||||||
|
|
||||||
let noisy_points = generated
|
|
||||||
.raw_points()
|
|
||||||
.iter()
|
|
||||||
.map(|&p| {
|
|
||||||
let disp = (noise.get(p.as_dvec3().into()) * 0.03f64) as f32;
|
|
||||||
let pt = p + (p.normalize() * disp);
|
|
||||||
pt.into()
|
|
||||||
})
|
|
||||||
.collect::<Vec<[f32; 3]>>();
|
|
||||||
|
|
||||||
let points = noisy_points
|
|
||||||
.iter()
|
|
||||||
.map(|&p| (Vec3::from_slice(&p) * sphere.radius).into())
|
|
||||||
.collect::<Vec<[f32; 3]>>();
|
|
||||||
|
|
||||||
for p in &points {
|
|
||||||
let v = Vec3::new(p[0], p[1], p[2]);
|
|
||||||
let v = v.length();
|
|
||||||
min = v.min(min);
|
|
||||||
max = v.max(max);
|
|
||||||
}
|
|
||||||
|
|
||||||
let indices = generated.get_all_indices();
|
|
||||||
|
|
||||||
let mut idxs = Vec::new();
|
|
||||||
for idx in indices.chunks_exact(3) {
|
|
||||||
idxs.push([idx[0], idx[1], idx[2]]);
|
|
||||||
}
|
|
||||||
|
|
||||||
let indices = Indices::U32(indices);
|
|
||||||
let collider = Collider::trimesh(points.iter().map(|p| Vect::from_slice(p)).collect(), idxs);
|
|
||||||
|
|
||||||
let mut mesh = Mesh::new(PrimitiveTopology::TriangleList);
|
|
||||||
mesh.set_indices(Some(indices));
|
|
||||||
mesh.insert_attribute(Mesh::ATTRIBUTE_POSITION, points);
|
|
||||||
//mesh.insert_attribute(Mesh::ATTRIBUTE_UV_0, uvs);
|
|
||||||
mesh.duplicate_vertices();
|
|
||||||
mesh.compute_flat_normals();
|
|
||||||
|
|
||||||
let tri_list = mesh
|
|
||||||
.attribute(Mesh::ATTRIBUTE_POSITION)
|
|
||||||
.unwrap()
|
|
||||||
.as_float3()
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
let mut rng = rand::rngs::StdRng::seed_from_u64(57);
|
|
||||||
let mut colors = Vec::new();
|
|
||||||
for _triangle in tri_list.chunks_exact(3) {
|
|
||||||
let l = 0.41;
|
|
||||||
let jitter = rng.gen_range(-0.0..=360.0f32);
|
|
||||||
let h = jitter;
|
|
||||||
let color = Color::hsl(h, PLANET_SATURATION, l).as_linear_rgba_f32();
|
|
||||||
for _ in 0..3 {
|
|
||||||
colors.push(color);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
dbg!(&colors.len());
|
|
||||||
mesh.insert_attribute(Mesh::ATTRIBUTE_COLOR, colors);
|
|
||||||
|
|
||||||
(mesh, collider)
|
|
||||||
}
|
}
|
||||||
|
|
16
src/ui.rs
16
src/ui.rs
|
@ -1,9 +1,10 @@
|
||||||
use bevy::prelude::{
|
use bevy::{
|
||||||
|
app::{Startup, Update},
|
||||||
|
prelude::{
|
||||||
AlignSelf, App, AssetServer, Color, Commands, Component, Plugin, Query, Res, Style, Text,
|
AlignSelf, App, AssetServer, Color, Commands, Component, Plugin, Query, Res, Style, Text,
|
||||||
TextBundle, TextSection, TextStyle, Transform, With,
|
TextBundle, TextSection, TextStyle, Transform, With,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#[cfg(feature = "inspector")]
|
|
||||||
use bevy_inspector_egui::quick::WorldInspectorPlugin;
|
|
||||||
use bevy_rapier3d::prelude::Velocity;
|
use bevy_rapier3d::prelude::Velocity;
|
||||||
|
|
||||||
use crate::bike::CyberBikeBody;
|
use crate::bike::CyberBikeBody;
|
||||||
|
@ -42,7 +43,7 @@ fn update_ui(
|
||||||
) {
|
) {
|
||||||
let mut text = text_query.single_mut();
|
let mut text = text_query.single_mut();
|
||||||
let (velocity, xform) = state_query.single();
|
let (velocity, xform) = state_query.single();
|
||||||
let speed = velocity.linvel.dot(xform.forward());
|
let speed = velocity.linvel.dot(*xform.forward());
|
||||||
text.sections[0].value = format!("spd: {:.2}", speed);
|
text.sections[0].value = format!("spd: {:.2}", speed);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -50,9 +51,8 @@ pub struct CyberUIPlugin;
|
||||||
|
|
||||||
impl Plugin for CyberUIPlugin {
|
impl Plugin for CyberUIPlugin {
|
||||||
fn build(&self, app: &mut App) {
|
fn build(&self, app: &mut App) {
|
||||||
#[cfg(feature = "inspector")]
|
//
|
||||||
app.add_plugin(WorldInspectorPlugin);
|
app.add_systems(Startup, setup_ui)
|
||||||
|
.add_systems(Update, update_ui);
|
||||||
app.add_startup_system(setup_ui).add_system(update_ui);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue