Skip to content

Commit

Permalink
Add missing ball_rot arg to render in pyi
Browse files Browse the repository at this point in the history
  • Loading branch information
VirxEC committed Aug 20, 2023
1 parent 361093e commit 71d9d7a
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
38 changes: 19 additions & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rlviser-py"
version = "0.3.1"
version = "0.3.2"
edition = "2021"
description = "Python implementation that manages a UDP connection to RLViser"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion rlviser_py.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def set_boost_pad_locations(locations: List[Tuple[float, float, float]]) -> ...:
try:
from RocketSim import BallState, CarConfig, CarState, Team

def render(tick_count: int, tick_rate: float, boost_pad_states: List[bool], ball: BallState, cars: List[Tuple[int, Team, CarConfig, CarState]]) -> ...:
def render(tick_count: int, tick_rate: float, boost_pad_states: List[bool], ball: BallState, ball_rot: Tuple[float, float, float, float], cars: List[Tuple[int, Team, CarConfig, CarState]]) -> ...:
pass
except ImportError:
pass
Expand Down

0 comments on commit 71d9d7a

Please sign in to comment.