Skip to content

Commit

Permalink
Fix rlviser torque
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-emery committed Jan 4, 2025
1 parent 0ab2854 commit 677e71c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rlgym/rocket_league/rlviser/rlviser_renderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def _get_car_state(self, car: Car):
car_state.has_double_jumped = car.has_double_jumped
car_state.air_time_since_jump = car.air_time_since_jump
car_state.flip_time = car.flip_time
car_state.last_rel_dodge_torque = rsim.Vec(*car.flip_torque)
car_state.flip_rel_torque = rsim.Vec(*car.flip_torque)

car_state.is_auto_flipping = car.is_autoflipping
car_state.auto_flip_timer = car.autoflip_timer
Expand Down

0 comments on commit 677e71c

Please sign in to comment.