rlbot-flatbuffers 0.18.4__cp310-abi3-win_amd64.whl → 0.18.6__cp310-abi3-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1570,7 +1570,10 @@ class BoostPadState:
1570
1570
  self,
1571
1571
  is_active: bool = False,
1572
1572
  timer: float = 0.0,
1573
- ) -> None: ...
1573
+ ) -> None:
1574
+ """
1575
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
1576
+ """
1574
1577
  def __str__(self) -> str: ...
1575
1578
  def __repr__(self) -> str: ...
1576
1579
 
@@ -1604,7 +1607,10 @@ class Color:
1604
1607
  g: int = 0,
1605
1608
  b: int = 0,
1606
1609
  a: int = 255,
1607
- ) -> None: ...
1610
+ ) -> None:
1611
+ """
1612
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
1613
+ """
1608
1614
  def __str__(self) -> str: ...
1609
1615
  def __repr__(self) -> str: ...
1610
1616
 
@@ -1688,7 +1694,10 @@ class ControllerState:
1688
1694
  boost: bool = False,
1689
1695
  handbrake: bool = False,
1690
1696
  use_item: bool = False,
1691
- ) -> None: ...
1697
+ ) -> None:
1698
+ """
1699
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
1700
+ """
1692
1701
  def __str__(self) -> str: ...
1693
1702
  def __repr__(self) -> str: ...
1694
1703
 
@@ -1710,7 +1719,10 @@ class Float:
1710
1719
  def __init__(
1711
1720
  self,
1712
1721
  val: float = 0.0,
1713
- ) -> None: ...
1722
+ ) -> None:
1723
+ """
1724
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
1725
+ """
1714
1726
  def __str__(self) -> str: ...
1715
1727
  def __repr__(self) -> str: ...
1716
1728
 
@@ -1749,7 +1761,10 @@ class Rotator:
1749
1761
  pitch: float = 0.0,
1750
1762
  yaw: float = 0.0,
1751
1763
  roll: float = 0.0,
1752
- ) -> None: ...
1764
+ ) -> None:
1765
+ """
1766
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
1767
+ """
1753
1768
  def __str__(self) -> str: ...
1754
1769
  def __repr__(self) -> str: ...
1755
1770
 
@@ -1816,7 +1831,10 @@ class ScoreInfo:
1816
1831
  saves: int = 0,
1817
1832
  shots: int = 0,
1818
1833
  demolitions: int = 0,
1819
- ) -> None: ...
1834
+ ) -> None:
1835
+ """
1836
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
1837
+ """
1820
1838
  def __str__(self) -> str: ...
1821
1839
  def __repr__(self) -> str: ...
1822
1840
 
@@ -1850,7 +1868,10 @@ class TeamInfo:
1850
1868
  self,
1851
1869
  team_index: int = 0,
1852
1870
  score: int = 0,
1853
- ) -> None: ...
1871
+ ) -> None:
1872
+ """
1873
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
1874
+ """
1854
1875
  def __str__(self) -> str: ...
1855
1876
  def __repr__(self) -> str: ...
1856
1877
 
@@ -1876,7 +1897,10 @@ class Vector2:
1876
1897
  self,
1877
1898
  x: float = 0.0,
1878
1899
  y: float = 0.0,
1879
- ) -> None: ...
1900
+ ) -> None:
1901
+ """
1902
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
1903
+ """
1880
1904
  def __str__(self) -> str: ...
1881
1905
  def __repr__(self) -> str: ...
1882
1906
 
@@ -1907,7 +1931,10 @@ class Vector3:
1907
1931
  x: float = 0.0,
1908
1932
  y: float = 0.0,
1909
1933
  z: float = 0.0,
1910
- ) -> None: ...
1934
+ ) -> None:
1935
+ """
1936
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
1937
+ """
1911
1938
  def __str__(self) -> str: ...
1912
1939
  def __repr__(self) -> str: ...
1913
1940
 
@@ -1941,7 +1968,10 @@ class Physics:
1941
1968
  rotation: Rotator = Rotator(),
1942
1969
  velocity: Vector3 = Vector3(),
1943
1970
  angular_velocity: Vector3 = Vector3(),
1944
- ) -> None: ...
1971
+ ) -> None:
1972
+ """
1973
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
1974
+ """
1945
1975
  def __str__(self) -> str: ...
1946
1976
  def __repr__(self) -> str: ...
1947
1977
 
@@ -1974,7 +2004,10 @@ class PredictionSlice:
1974
2004
  self,
1975
2005
  game_seconds: float = 0.0,
1976
2006
  physics: Physics = Physics(),
1977
- ) -> None: ...
2007
+ ) -> None:
2008
+ """
2009
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
2010
+ """
1978
2011
  def __str__(self) -> str: ...
1979
2012
  def __repr__(self) -> str: ...
1980
2013
 
@@ -2065,7 +2098,10 @@ class PlayerLoadout:
2065
2098
  loadout_paint: LoadoutPaint | None = None,
2066
2099
  primary_color_lookup: Color | None = None,
2067
2100
  secondary_color_lookup: Color | None = None,
2068
- ) -> None: ...
2101
+ ) -> None:
2102
+ """
2103
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
2104
+ """
2069
2105
  def pack(self) -> bytes:
2070
2106
  """
2071
2107
  Serializes this instance into a byte array
@@ -2114,7 +2150,10 @@ class RenderAnchor:
2114
2150
  self,
2115
2151
  world: Vector3 = Vector3(),
2116
2152
  relative: BallAnchor | CarAnchor | None = None,
2117
- ) -> None: ...
2153
+ ) -> None:
2154
+ """
2155
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
2156
+ """
2118
2157
  def pack(self) -> bytes:
2119
2158
  """
2120
2159
  Serializes this instance into a byte array
@@ -2158,7 +2197,10 @@ class BoxShape:
2158
2197
  length: float = 0.0,
2159
2198
  width: float = 0.0,
2160
2199
  height: float = 0.0,
2161
- ) -> None: ...
2200
+ ) -> None:
2201
+ """
2202
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
2203
+ """
2162
2204
  def pack(self) -> bytes:
2163
2205
  """
2164
2206
  Serializes this instance into a byte array
@@ -2240,7 +2282,10 @@ class MatchComm:
2240
2282
  team_only: bool = False,
2241
2283
  display: str | None = None,
2242
2284
  content: bytes = bytes(),
2243
- ) -> None: ...
2285
+ ) -> None:
2286
+ """
2287
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
2288
+ """
2244
2289
  def pack(self) -> bytes:
2245
2290
  """
2246
2291
  Serializes this instance into a byte array
@@ -2257,6 +2302,22 @@ class MatchComm:
2257
2302
  def __str__(self) -> str: ...
2258
2303
  def __repr__(self) -> str: ...
2259
2304
 
2305
+ class PingRequest:
2306
+ """
2307
+ Ping request message
2308
+ """
2309
+
2310
+ def __new__(cls) -> PingRequest: ...
2311
+ def __init__(self) -> None: ...
2312
+
2313
+ class PingResponse:
2314
+ """
2315
+ Ping response message
2316
+ """
2317
+
2318
+ def __new__(cls) -> PingResponse: ...
2319
+ def __init__(self) -> None: ...
2320
+
2260
2321
  class RenderingStatus:
2261
2322
  """
2262
2323
  As an interface message, this requests for a specificed agent to have its ability to render changed.
@@ -2295,7 +2356,10 @@ class RenderingStatus:
2295
2356
  index: int = 0,
2296
2357
  is_bot: bool = False,
2297
2358
  status: bool = False,
2298
- ) -> None: ...
2359
+ ) -> None:
2360
+ """
2361
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
2362
+ """
2299
2363
  def pack(self) -> bytes:
2300
2364
  """
2301
2365
  Serializes this instance into a byte array
@@ -2344,7 +2408,10 @@ class DesiredPhysics:
2344
2408
  rotation: RotatorPartial | None = None,
2345
2409
  velocity: Vector3Partial | None = None,
2346
2410
  angular_velocity: Vector3Partial | None = None,
2347
- ) -> None: ...
2411
+ ) -> None:
2412
+ """
2413
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
2414
+ """
2348
2415
  def pack(self) -> bytes:
2349
2416
  """
2350
2417
  Serializes this instance into a byte array
@@ -2498,7 +2565,10 @@ class MatchConfiguration:
2498
2565
  enable_state_setting: bool = False,
2499
2566
  auto_save_replay: bool = False,
2500
2567
  freeplay: bool = False,
2501
- ) -> None: ...
2568
+ ) -> None:
2569
+ """
2570
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
2571
+ """
2502
2572
  def pack(self) -> bytes:
2503
2573
  """
2504
2574
  Serializes this instance into a byte array
@@ -2560,7 +2630,10 @@ class ConnectionSettings:
2560
2630
  wants_ball_predictions: bool = False,
2561
2631
  wants_comms: bool = False,
2562
2632
  close_between_matches: bool = False,
2563
- ) -> None: ...
2633
+ ) -> None:
2634
+ """
2635
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
2636
+ """
2564
2637
  def pack(self) -> bytes:
2565
2638
  """
2566
2639
  Serializes this instance into a byte array
@@ -2596,7 +2669,10 @@ class ConsoleCommand:
2596
2669
  def __init__(
2597
2670
  self,
2598
2671
  command: str = "",
2599
- ) -> None: ...
2672
+ ) -> None:
2673
+ """
2674
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
2675
+ """
2600
2676
  def pack(self) -> bytes:
2601
2677
  """
2602
2678
  Serializes this instance into a byte array
@@ -2643,7 +2719,10 @@ class ControllableInfo:
2643
2719
  self,
2644
2720
  index: int = 0,
2645
2721
  identifier: int = 0,
2646
- ) -> None: ...
2722
+ ) -> None:
2723
+ """
2724
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
2725
+ """
2647
2726
  def pack(self) -> bytes:
2648
2727
  """
2649
2728
  Serializes this instance into a byte array
@@ -2683,7 +2762,10 @@ class CylinderShape:
2683
2762
  self,
2684
2763
  diameter: float = 0.0,
2685
2764
  height: float = 0.0,
2686
- ) -> None: ...
2765
+ ) -> None:
2766
+ """
2767
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
2768
+ """
2687
2769
  def pack(self) -> bytes:
2688
2770
  """
2689
2771
  Serializes this instance into a byte array
@@ -2763,7 +2845,10 @@ class LoadoutPaint:
2763
2845
  hat_paint_id: int = 0,
2764
2846
  trails_paint_id: int = 0,
2765
2847
  goal_explosion_paint_id: int = 0,
2766
- ) -> None: ...
2848
+ ) -> None:
2849
+ """
2850
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
2851
+ """
2767
2852
  def pack(self) -> bytes:
2768
2853
  """
2769
2854
  Serializes this instance into a byte array
@@ -2799,7 +2884,10 @@ class RemoveRenderGroup:
2799
2884
  def __init__(
2800
2885
  self,
2801
2886
  id: int = 0,
2802
- ) -> None: ...
2887
+ ) -> None:
2888
+ """
2889
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
2890
+ """
2803
2891
  def pack(self) -> bytes:
2804
2892
  """
2805
2893
  Serializes this instance into a byte array
@@ -2869,7 +2957,10 @@ class ScriptConfiguration:
2869
2957
  run_command: str = "",
2870
2958
  script_id: int = 0,
2871
2959
  agent_id: str = "",
2872
- ) -> None: ...
2960
+ ) -> None:
2961
+ """
2962
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
2963
+ """
2873
2964
  def pack(self) -> bytes:
2874
2965
  """
2875
2966
  Serializes this instance into a byte array
@@ -2905,7 +2996,10 @@ class SphereShape:
2905
2996
  def __init__(
2906
2997
  self,
2907
2998
  diameter: float = 0.0,
2908
- ) -> None: ...
2999
+ ) -> None:
3000
+ """
3001
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
3002
+ """
2909
3003
  def pack(self) -> bytes:
2910
3004
  """
2911
3005
  Serializes this instance into a byte array
@@ -2940,7 +3034,10 @@ class StartCommand:
2940
3034
  def __init__(
2941
3035
  self,
2942
3036
  config_path: str = "",
2943
- ) -> None: ...
3037
+ ) -> None:
3038
+ """
3039
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
3040
+ """
2944
3041
  def pack(self) -> bytes:
2945
3042
  """
2946
3043
  Serializes this instance into a byte array
@@ -2975,7 +3072,10 @@ class StopCommand:
2975
3072
  def __init__(
2976
3073
  self,
2977
3074
  shutdown_server: bool = False,
2978
- ) -> None: ...
3075
+ ) -> None:
3076
+ """
3077
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
3078
+ """
2979
3079
  def pack(self) -> bytes:
2980
3080
  """
2981
3081
  Serializes this instance into a byte array
@@ -3022,7 +3122,10 @@ class BallAnchor:
3022
3122
  self,
3023
3123
  index: int = 0,
3024
3124
  local: Vector3 = Vector3(),
3025
- ) -> None: ...
3125
+ ) -> None:
3126
+ """
3127
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
3128
+ """
3026
3129
  def pack(self) -> bytes:
3027
3130
  """
3028
3131
  Serializes this instance into a byte array
@@ -3062,7 +3165,10 @@ class BallPrediction:
3062
3165
  def __init__(
3063
3166
  self,
3064
3167
  slices: Sequence[PredictionSlice] = [],
3065
- ) -> None: ...
3168
+ ) -> None:
3169
+ """
3170
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
3171
+ """
3066
3172
  def pack(self) -> bytes:
3067
3173
  """
3068
3174
  Serializes this instance into a byte array
@@ -3109,7 +3215,10 @@ class BoostPad:
3109
3215
  self,
3110
3216
  location: Vector3 = Vector3(),
3111
3217
  is_full_boost: bool = False,
3112
- ) -> None: ...
3218
+ ) -> None:
3219
+ """
3220
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
3221
+ """
3113
3222
  def pack(self) -> bytes:
3114
3223
  """
3115
3224
  Serializes this instance into a byte array
@@ -3156,7 +3265,10 @@ class CarAnchor:
3156
3265
  self,
3157
3266
  index: int = 0,
3158
3267
  local: Vector3 = Vector3(),
3159
- ) -> None: ...
3268
+ ) -> None:
3269
+ """
3270
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
3271
+ """
3160
3272
  def pack(self) -> bytes:
3161
3273
  """
3162
3274
  Serializes this instance into a byte array
@@ -3203,7 +3315,10 @@ class ControllableTeamInfo:
3203
3315
  self,
3204
3316
  team: int = 0,
3205
3317
  controllables: Sequence[ControllableInfo] = [],
3206
- ) -> None: ...
3318
+ ) -> None:
3319
+ """
3320
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
3321
+ """
3207
3322
  def pack(self) -> bytes:
3208
3323
  """
3209
3324
  Serializes this instance into a byte array
@@ -3281,7 +3396,10 @@ class CustomBot:
3281
3396
  loadout: PlayerLoadout | None = None,
3282
3397
  agent_id: str = "",
3283
3398
  hivemind: bool = False,
3284
- ) -> None: ...
3399
+ ) -> None:
3400
+ """
3401
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
3402
+ """
3285
3403
  def pack(self) -> bytes:
3286
3404
  """
3287
3405
  Serializes this instance into a byte array
@@ -3317,7 +3435,10 @@ class DesiredBallState:
3317
3435
  def __init__(
3318
3436
  self,
3319
3437
  physics: DesiredPhysics = DesiredPhysics(),
3320
- ) -> None: ...
3438
+ ) -> None:
3439
+ """
3440
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
3441
+ """
3321
3442
  def pack(self) -> bytes:
3322
3443
  """
3323
3444
  Serializes this instance into a byte array
@@ -3364,7 +3485,10 @@ class DesiredMatchInfo:
3364
3485
  self,
3365
3486
  world_gravity_z: float | None = None,
3366
3487
  game_speed: float | None = None,
3367
- ) -> None: ...
3488
+ ) -> None:
3489
+ """
3490
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
3491
+ """
3368
3492
  def pack(self) -> bytes:
3369
3493
  """
3370
3494
  Serializes this instance into a byte array
@@ -3431,7 +3555,10 @@ class GoalInfo:
3431
3555
  direction: Vector3 = Vector3(),
3432
3556
  width: float = 0.0,
3433
3557
  height: float = 0.0,
3434
- ) -> None: ...
3558
+ ) -> None:
3559
+ """
3560
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
3561
+ """
3435
3562
  def pack(self) -> bytes:
3436
3563
  """
3437
3564
  Serializes this instance into a byte array
@@ -3530,7 +3657,10 @@ class MatchInfo:
3530
3657
  game_speed: float = 0.0,
3531
3658
  last_spectated: int = 0,
3532
3659
  frame_num: int = 0,
3533
- ) -> None: ...
3660
+ ) -> None:
3661
+ """
3662
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
3663
+ """
3534
3664
  def pack(self) -> bytes:
3535
3665
  """
3536
3666
  Serializes this instance into a byte array
@@ -3584,7 +3714,10 @@ class PlayerConfiguration:
3584
3714
  variety: CustomBot | Human | PsyonixBot = CustomBot(),
3585
3715
  team: int = 0,
3586
3716
  player_id: int = 0,
3587
- ) -> None: ...
3717
+ ) -> None:
3718
+ """
3719
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
3720
+ """
3588
3721
  def pack(self) -> bytes:
3589
3722
  """
3590
3723
  Serializes this instance into a byte array
@@ -3624,7 +3757,10 @@ class PlayerInput:
3624
3757
  self,
3625
3758
  player_index: int = 0,
3626
3759
  controller_state: ControllerState = ControllerState(),
3627
- ) -> None: ...
3760
+ ) -> None:
3761
+ """
3762
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
3763
+ """
3628
3764
  def pack(self) -> bytes:
3629
3765
  """
3630
3766
  Serializes this instance into a byte array
@@ -3672,7 +3808,10 @@ class RenderGroup:
3672
3808
  self,
3673
3809
  render_messages: Sequence[RenderMessage] = [],
3674
3810
  id: int = 0,
3675
- ) -> None: ...
3811
+ ) -> None:
3812
+ """
3813
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
3814
+ """
3676
3815
  def pack(self) -> bytes:
3677
3816
  """
3678
3817
  Serializes this instance into a byte array
@@ -3707,7 +3846,10 @@ class RenderMessage:
3707
3846
  def __init__(
3708
3847
  self,
3709
3848
  variety: Line3D | PolyLine3D | Rect2D | Rect3D | String2D | String3D = Line3D(),
3710
- ) -> None: ...
3849
+ ) -> None:
3850
+ """
3851
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
3852
+ """
3711
3853
  def pack(self) -> bytes:
3712
3854
  """
3713
3855
  Serializes this instance into a byte array
@@ -3762,7 +3904,10 @@ class RotatorPartial:
3762
3904
  pitch: float | None = None,
3763
3905
  yaw: float | None = None,
3764
3906
  roll: float | None = None,
3765
- ) -> None: ...
3907
+ ) -> None:
3908
+ """
3909
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
3910
+ """
3766
3911
  def pack(self) -> bytes:
3767
3912
  """
3768
3913
  Serializes this instance into a byte array
@@ -3810,7 +3955,10 @@ class SetLoadout:
3810
3955
  self,
3811
3956
  index: int = 0,
3812
3957
  loadout: PlayerLoadout = PlayerLoadout(),
3813
- ) -> None: ...
3958
+ ) -> None:
3959
+ """
3960
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
3961
+ """
3814
3962
  def pack(self) -> bytes:
3815
3963
  """
3816
3964
  Serializes this instance into a byte array
@@ -3869,7 +4017,10 @@ class Touch:
3869
4017
  location: Vector3 = Vector3(),
3870
4018
  normal: Vector3 = Vector3(),
3871
4019
  ball_index: int = 0,
3872
- ) -> None: ...
4020
+ ) -> None:
4021
+ """
4022
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
4023
+ """
3873
4024
  def pack(self) -> bytes:
3874
4025
  """
3875
4026
  Serializes this instance into a byte array
@@ -3914,7 +4065,10 @@ class Vector3Partial:
3914
4065
  x: float | None = None,
3915
4066
  y: float | None = None,
3916
4067
  z: float | None = None,
3917
- ) -> None: ...
4068
+ ) -> None:
4069
+ """
4070
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
4071
+ """
3918
4072
  def pack(self) -> bytes:
3919
4073
  """
3920
4074
  Serializes this instance into a byte array
@@ -3959,7 +4113,10 @@ class BallInfo:
3959
4113
  self,
3960
4114
  physics: Physics = Physics(),
3961
4115
  shape: BoxShape | CylinderShape | SphereShape = BoxShape(),
3962
- ) -> None: ...
4116
+ ) -> None:
4117
+ """
4118
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
4119
+ """
3963
4120
  def pack(self) -> bytes:
3964
4121
  """
3965
4122
  Serializes this instance into a byte array
@@ -3999,7 +4156,10 @@ class DesiredCarState:
3999
4156
  self,
4000
4157
  physics: DesiredPhysics | None = None,
4001
4158
  boost_amount: float | None = None,
4002
- ) -> None: ...
4159
+ ) -> None:
4160
+ """
4161
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
4162
+ """
4003
4163
  def pack(self) -> bytes:
4004
4164
  """
4005
4165
  Serializes this instance into a byte array
@@ -4048,7 +4208,10 @@ class FieldInfo:
4048
4208
  self,
4049
4209
  boost_pads: Sequence[BoostPad] = [],
4050
4210
  goals: Sequence[GoalInfo] = [],
4051
- ) -> None: ...
4211
+ ) -> None:
4212
+ """
4213
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
4214
+ """
4052
4215
  def pack(self) -> bytes:
4053
4216
  """
4054
4217
  Serializes this instance into a byte array
@@ -4091,7 +4254,10 @@ class Line3D:
4091
4254
  start: RenderAnchor = RenderAnchor(),
4092
4255
  end: RenderAnchor = RenderAnchor(),
4093
4256
  color: Color = Color(),
4094
- ) -> None: ...
4257
+ ) -> None:
4258
+ """
4259
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
4260
+ """
4095
4261
  def pack(self) -> bytes:
4096
4262
  """
4097
4263
  Serializes this instance into a byte array
@@ -4130,7 +4296,10 @@ class PolyLine3D:
4130
4296
  self,
4131
4297
  points: Sequence[Vector3] = [],
4132
4298
  color: Color = Color(),
4133
- ) -> None: ...
4299
+ ) -> None:
4300
+ """
4301
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
4302
+ """
4134
4303
  def pack(self) -> bytes:
4135
4304
  """
4136
4305
  Serializes this instance into a byte array
@@ -4181,7 +4350,10 @@ class PsyonixBot:
4181
4350
  name: str = "",
4182
4351
  loadout: PlayerLoadout | None = None,
4183
4352
  bot_skill: PsyonixSkill = PsyonixSkill(),
4184
- ) -> None: ...
4353
+ ) -> None:
4354
+ """
4355
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
4356
+ """
4185
4357
  def pack(self) -> bytes:
4186
4358
  """
4187
4359
  Serializes this instance into a byte array
@@ -4262,7 +4434,10 @@ class Rect2D:
4262
4434
  color: Color = Color(),
4263
4435
  h_align: TextHAlign = TextHAlign(),
4264
4436
  v_align: TextVAlign = TextVAlign(),
4265
- ) -> None: ...
4437
+ ) -> None:
4438
+ """
4439
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
4440
+ """
4266
4441
  def pack(self) -> bytes:
4267
4442
  """
4268
4443
  Serializes this instance into a byte array
@@ -4351,7 +4526,10 @@ class String2D:
4351
4526
  background: Color = Color(),
4352
4527
  h_align: TextHAlign = TextHAlign(),
4353
4528
  v_align: TextVAlign = TextVAlign(),
4354
- ) -> None: ...
4529
+ ) -> None:
4530
+ """
4531
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
4532
+ """
4355
4533
  def pack(self) -> bytes:
4356
4534
  """
4357
4535
  Serializes this instance into a byte array
@@ -4413,7 +4591,10 @@ class DesiredGameState:
4413
4591
  car_states: Sequence[DesiredCarState] = [],
4414
4592
  match_info: DesiredMatchInfo | None = None,
4415
4593
  console_commands: Sequence[ConsoleCommand] = [],
4416
- ) -> None: ...
4594
+ ) -> None:
4595
+ """
4596
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
4597
+ """
4417
4598
  def pack(self) -> bytes:
4418
4599
  """
4419
4600
  Serializes this instance into a byte array
@@ -4487,7 +4668,10 @@ class Rect3D:
4487
4668
  color: Color = Color(),
4488
4669
  h_align: TextHAlign = TextHAlign(),
4489
4670
  v_align: TextVAlign = TextVAlign(),
4490
- ) -> None: ...
4671
+ ) -> None:
4672
+ """
4673
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
4674
+ """
4491
4675
  def pack(self) -> bytes:
4492
4676
  """
4493
4677
  Serializes this instance into a byte array
@@ -4568,7 +4752,10 @@ class String3D:
4568
4752
  background: Color = Color(),
4569
4753
  h_align: TextHAlign = TextHAlign(),
4570
4754
  v_align: TextVAlign = TextVAlign(),
4571
- ) -> None: ...
4755
+ ) -> None:
4756
+ """
4757
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
4758
+ """
4572
4759
  def pack(self) -> bytes:
4573
4760
  """
4574
4761
  Serializes this instance into a byte array
@@ -4638,7 +4825,10 @@ class GamePacket:
4638
4825
  balls: Sequence[BallInfo] = [],
4639
4826
  match_info: MatchInfo = MatchInfo(),
4640
4827
  teams: Sequence[TeamInfo] = [],
4641
- ) -> None: ...
4828
+ ) -> None:
4829
+ """
4830
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
4831
+ """
4642
4832
  def pack(self) -> bytes:
4643
4833
  """
4644
4834
  Serializes this instance into a byte array
@@ -4839,7 +5029,10 @@ class PlayerInfo:
4839
5029
  has_dodged: bool = False,
4840
5030
  dodge_elapsed: float = 0.0,
4841
5031
  dodge_dir: Vector2 = Vector2(),
4842
- ) -> None: ...
5032
+ ) -> None:
5033
+ """
5034
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
5035
+ """
4843
5036
  def pack(self) -> bytes:
4844
5037
  """
4845
5038
  Serializes this instance into a byte array
@@ -5095,7 +5288,10 @@ class MutatorSettings:
5095
5288
  assist_goal_score: AssistGoalScoreMutator = AssistGoalScoreMutator(),
5096
5289
  input_restriction: InputRestrictionMutator = InputRestrictionMutator(),
5097
5290
  scoring_rule: ScoringRuleMutator = ScoringRuleMutator(),
5098
- ) -> None: ...
5291
+ ) -> None:
5292
+ """
5293
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
5294
+ """
5099
5295
  def pack(self) -> bytes:
5100
5296
  """
5101
5297
  Serializes this instance into a byte array
@@ -5117,7 +5313,7 @@ class CorePacket:
5117
5313
  Packet containing a CoreMessage
5118
5314
  """
5119
5315
 
5120
- message: BallPrediction | ControllableTeamInfo | DisconnectSignal | FieldInfo | GamePacket | MatchComm | MatchConfiguration | RenderingStatus
5316
+ message: BallPrediction | ControllableTeamInfo | DisconnectSignal | FieldInfo | GamePacket | MatchComm | MatchConfiguration | PingRequest | PingResponse | RenderingStatus
5121
5317
 
5122
5318
  __match_args__ = (
5123
5319
  "message",
@@ -5125,12 +5321,15 @@ class CorePacket:
5125
5321
 
5126
5322
  def __new__(
5127
5323
  cls,
5128
- message: BallPrediction | ControllableTeamInfo | DisconnectSignal | FieldInfo | GamePacket | MatchComm | MatchConfiguration | RenderingStatus = BallPrediction(),
5324
+ message: BallPrediction | ControllableTeamInfo | DisconnectSignal | FieldInfo | GamePacket | MatchComm | MatchConfiguration | PingRequest | PingResponse | RenderingStatus = BallPrediction(),
5129
5325
  ) -> CorePacket: ...
5130
5326
  def __init__(
5131
5327
  self,
5132
- message: BallPrediction | ControllableTeamInfo | DisconnectSignal | FieldInfo | GamePacket | MatchComm | MatchConfiguration | RenderingStatus = BallPrediction(),
5133
- ) -> None: ...
5328
+ message: BallPrediction | ControllableTeamInfo | DisconnectSignal | FieldInfo | GamePacket | MatchComm | MatchConfiguration | PingRequest | PingResponse | RenderingStatus = BallPrediction(),
5329
+ ) -> None:
5330
+ """
5331
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
5332
+ """
5134
5333
  def pack(self) -> bytes:
5135
5334
  """
5136
5335
  Serializes this instance into a byte array
@@ -5152,7 +5351,7 @@ class InterfacePacket:
5152
5351
  Packet containing a InterfaceMessage
5153
5352
  """
5154
5353
 
5155
- message: ConnectionSettings | DesiredGameState | DisconnectSignal | InitComplete | MatchComm | MatchConfiguration | PlayerInput | RemoveRenderGroup | RenderGroup | RenderingStatus | SetLoadout | StartCommand | StopCommand
5354
+ message: ConnectionSettings | DesiredGameState | DisconnectSignal | InitComplete | MatchComm | MatchConfiguration | PingRequest | PingResponse | PlayerInput | RemoveRenderGroup | RenderGroup | RenderingStatus | SetLoadout | StartCommand | StopCommand
5156
5355
 
5157
5356
  __match_args__ = (
5158
5357
  "message",
@@ -5160,12 +5359,15 @@ class InterfacePacket:
5160
5359
 
5161
5360
  def __new__(
5162
5361
  cls,
5163
- message: ConnectionSettings | DesiredGameState | DisconnectSignal | InitComplete | MatchComm | MatchConfiguration | PlayerInput | RemoveRenderGroup | RenderGroup | RenderingStatus | SetLoadout | StartCommand | StopCommand = ConnectionSettings(),
5362
+ message: ConnectionSettings | DesiredGameState | DisconnectSignal | InitComplete | MatchComm | MatchConfiguration | PingRequest | PingResponse | PlayerInput | RemoveRenderGroup | RenderGroup | RenderingStatus | SetLoadout | StartCommand | StopCommand = ConnectionSettings(),
5164
5363
  ) -> InterfacePacket: ...
5165
5364
  def __init__(
5166
5365
  self,
5167
- message: ConnectionSettings | DesiredGameState | DisconnectSignal | InitComplete | MatchComm | MatchConfiguration | PlayerInput | RemoveRenderGroup | RenderGroup | RenderingStatus | SetLoadout | StartCommand | StopCommand = ConnectionSettings(),
5168
- ) -> None: ...
5366
+ message: ConnectionSettings | DesiredGameState | DisconnectSignal | InitComplete | MatchComm | MatchConfiguration | PingRequest | PingResponse | PlayerInput | RemoveRenderGroup | RenderGroup | RenderingStatus | SetLoadout | StartCommand | StopCommand = ConnectionSettings(),
5367
+ ) -> None:
5368
+ """
5369
+ NOTE: All field initialization before `__init__`, inside of `__new__`.
5370
+ """
5169
5371
  def pack(self) -> bytes:
5170
5372
  """
5171
5373
  Serializes this instance into a byte array
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rlbot_flatbuffers
3
- Version: 0.18.4
3
+ Version: 0.18.6
4
4
  Classifier: Programming Language :: Rust
5
5
  Classifier: Programming Language :: Python :: Implementation :: CPython
6
6
  Classifier: Programming Language :: Python :: Implementation :: PyPy
@@ -0,0 +1,8 @@
1
+ rlbot_flatbuffers\__init__.py,sha256=F5P4NTZrdoi0sGDYYT6KtaLKKZUcSOR_hW0vFAaFmhk,151
2
+ rlbot_flatbuffers\__init__.pyi,sha256=VLx4Eg34eVV26vOoYHa2f9eYM9pkIsQP2dqKB-glpXo,140765
3
+ rlbot_flatbuffers\py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ rlbot_flatbuffers\rlbot_flatbuffers.pyd,sha256=zOytZtlqRdD5tnjEntec3eEK1Jqzddc9sNlSjtQNTtw,1313280
5
+ rlbot_flatbuffers-0.18.6.dist-info\METADATA,sha256=p5SWbiUPqhJeCLQekKBMI49AUYRAVQ4koaVaTZEJ5l4,5391
6
+ rlbot_flatbuffers-0.18.6.dist-info\WHEEL,sha256=ZMDDxh9OPoaLQ4P2dJmgI1XsENYSzjzq8fErKKVw5iE,96
7
+ rlbot_flatbuffers-0.18.6.dist-info\licenses\LICENSE,sha256=tnBqJ024pW1c3LUmlgNzvGH3ceFiLbcUNhw8fGR90P0,1083
8
+ rlbot_flatbuffers-0.18.6.dist-info\RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: maturin (1.9.6)
2
+ Generator: maturin (1.11.5)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp310-abi3-win_amd64
@@ -1,8 +0,0 @@
1
- rlbot_flatbuffers-0.18.4.dist-info/METADATA,sha256=fGbH52CxEukv0-ze16tRS-un85EH6DD69o_FxjZjmLw,5391
2
- rlbot_flatbuffers-0.18.4.dist-info/WHEEL,sha256=4EDp_7DiFfWl1yYv5M4wSosAn5L_xgD1dyrQxQxfCx8,95
3
- rlbot_flatbuffers-0.18.4.dist-info/licenses/LICENSE,sha256=tnBqJ024pW1c3LUmlgNzvGH3ceFiLbcUNhw8fGR90P0,1083
4
- rlbot_flatbuffers/__init__.py,sha256=F5P4NTZrdoi0sGDYYT6KtaLKKZUcSOR_hW0vFAaFmhk,151
5
- rlbot_flatbuffers/__init__.pyi,sha256=de6hWbKpR3cLaILnDqxk8X49Zh8tk2UJ_xEpw48XVmY,134172
6
- rlbot_flatbuffers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- rlbot_flatbuffers/rlbot_flatbuffers.pyd,sha256=c1hMcL4vGhYfWwNlGi1DkUBQuj4a8WnEbrEQhUyTx9w,1477120
8
- rlbot_flatbuffers-0.18.4.dist-info/RECORD,,