Compare commits

..

No commits in common. "7ec1cc885b942b9b5fbcac5317c7d99fda377292" and "d73d06665ac55785e5422121c05cbc2401a8149c" have entirely different histories.

2 changed files with 1 additions and 6 deletions

View file

@ -857,7 +857,7 @@ fn handle_wants_acceleration(
delta_v =
(trans.rotation.inverse() * stop_direction.normalize()).as_dvec3();
engine.currently_matching_velocity = true;
thruster_on = true; // is this redundant?
thruster_on = true;
}
}
}
@ -876,7 +876,6 @@ fn handle_wants_acceleration(
if delta_v.length_squared() > 0.003 {
// Engine is firing!
thruster_on = true;
engine.currently_firing = true;
engine.current_warmup =
(engine.current_warmup + dt / engine.warmup_seconds).clamp(0.0, 1.0);
@ -933,7 +932,6 @@ fn handle_wants_acceleration(
// Engine is not firing
engine.current_warmup =
(engine.current_warmup - dt / engine.warmup_seconds).clamp(0.0, 1.0);
engine.currently_firing = false;
}
if is_player.is_some() {

View file

@ -1150,9 +1150,6 @@ fn spawn_scenes(
// command: armodel suit_ar_dress
state.ar_models.push("suit_ar_dress".to_string());
// command: armodel suit_ar_choker
state.ar_models.push("suit_ar_choker".to_string());
// command: pronoun she
state.pronoun = Some("she".to_string());
} else if template == "cultleader" {