Skip to content

Commit

Permalink
Add pitch smoothing (WIP)
Browse files Browse the repository at this point in the history
  • Loading branch information
khanghugo committed Mar 29, 2024
1 parent 349d7ca commit b6a4ef3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/modules/tas_optimizer/optimizer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,8 @@ impl Optimizer {
Line::Change(_) => (),
Line::TargetYawOverride(_) => (),
Line::RenderYawOverride(_) => (),
Line::PitchOverride(_) => (),
Line::RenderPitchOverride(_) => (),
}
}

Expand Down
2 changes: 2 additions & 0 deletions src/modules/tas_optimizer/simulator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,8 @@ impl<'a, T: Trace> Iterator for Simulator<'a, T> {
Line::Change(_) => (),
Line::TargetYawOverride(_) => (),
Line::RenderYawOverride(_) => (),
Line::PitchOverride(_) => (),
Line::RenderPitchOverride(_) => (),
}

// Advance to the next line for non-frame-bulks.
Expand Down

0 comments on commit b6a4ef3

Please sign in to comment.