rlbot-flatbuffers 0.16.0__cp310-abi3-win_amd64.whl → 0.17.0__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.
@@ -131,12 +131,6 @@ class BallAnchor:
131
131
  """
132
132
  Serializes this instance into a byte array
133
133
  """
134
- def unpack_with(self, data: bytes) -> None:
135
- """
136
- Deserializes the data into this instance
137
-
138
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
139
- """
140
134
  @staticmethod
141
135
  def unpack(data: bytes) -> BallAnchor:
142
136
  """
@@ -214,12 +208,6 @@ class BallInfo:
214
208
  """
215
209
  Serializes this instance into a byte array
216
210
  """
217
- def unpack_with(self, data: bytes) -> None:
218
- """
219
- Deserializes the data into this instance
220
-
221
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
222
- """
223
211
  @staticmethod
224
212
  def unpack(data: bytes) -> BallInfo:
225
213
  """
@@ -274,12 +262,6 @@ class BallPrediction:
274
262
  """
275
263
  Serializes this instance into a byte array
276
264
  """
277
- def unpack_with(self, data: bytes) -> None:
278
- """
279
- Deserializes the data into this instance
280
-
281
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
282
- """
283
265
  @staticmethod
284
266
  def unpack(data: bytes) -> BallPrediction:
285
267
  """
@@ -373,12 +355,6 @@ class Bool:
373
355
  """
374
356
  Serializes this instance into a byte array
375
357
  """
376
- def unpack_with(self, data: bytes) -> None:
377
- """
378
- Deserializes the data into this instance
379
-
380
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
381
- """
382
358
  @staticmethod
383
359
  def unpack(data: bytes) -> Bool:
384
360
  """
@@ -478,12 +454,6 @@ class BoostPadState:
478
454
  """
479
455
  Serializes this instance into a byte array
480
456
  """
481
- def unpack_with(self, data: bytes) -> None:
482
- """
483
- Deserializes the data into this instance
484
-
485
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
486
- """
487
457
  @staticmethod
488
458
  def unpack(data: bytes) -> BoostPadState:
489
459
  """
@@ -543,12 +513,6 @@ class BoxShape:
543
513
  """
544
514
  Serializes this instance into a byte array
545
515
  """
546
- def unpack_with(self, data: bytes) -> None:
547
- """
548
- Deserializes the data into this instance
549
-
550
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
551
- """
552
516
  @staticmethod
553
517
  def unpack(data: bytes) -> BoxShape:
554
518
  """
@@ -593,12 +557,6 @@ class CarAnchor:
593
557
  """
594
558
  Serializes this instance into a byte array
595
559
  """
596
- def unpack_with(self, data: bytes) -> None:
597
- """
598
- Deserializes the data into this instance
599
-
600
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
601
- """
602
560
  @staticmethod
603
561
  def unpack(data: bytes) -> CarAnchor:
604
562
  """
@@ -653,12 +611,6 @@ class Color:
653
611
  """
654
612
  Serializes this instance into a byte array
655
613
  """
656
- def unpack_with(self, data: bytes) -> None:
657
- """
658
- Deserializes the data into this instance
659
-
660
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
661
- """
662
614
  @staticmethod
663
615
  def unpack(data: bytes) -> Color:
664
616
  """
@@ -718,12 +670,6 @@ class ConnectionSettings:
718
670
  """
719
671
  Serializes this instance into a byte array
720
672
  """
721
- def unpack_with(self, data: bytes) -> None:
722
- """
723
- Deserializes the data into this instance
724
-
725
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
726
- """
727
673
  @staticmethod
728
674
  def unpack(data: bytes) -> ConnectionSettings:
729
675
  """
@@ -757,12 +703,6 @@ class ConsoleCommand:
757
703
  """
758
704
  Serializes this instance into a byte array
759
705
  """
760
- def unpack_with(self, data: bytes) -> None:
761
- """
762
- Deserializes the data into this instance
763
-
764
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
765
- """
766
706
  @staticmethod
767
707
  def unpack(data: bytes) -> ConsoleCommand:
768
708
  """
@@ -779,29 +719,29 @@ class ControllableInfo:
779
719
  """
780
720
  index: int
781
721
  """
782
- The index of the bot.
722
+ The index of the bot/script.
783
723
  """
784
- spawn_id: int
724
+ identifier: int
785
725
  """
786
- The spawn id of the bot.
726
+ The id of the bot/script.
787
727
  This value is mostly used internally to keep track of participants in the match.
788
- The spawn id can be used to find the corresponding PlayerConfiguration in the MatchConfiguration.
728
+ The id can be used to find the corresponding PlayerConfiguration in the MatchConfiguration.
789
729
  """
790
730
 
791
731
  __match_args__ = (
792
732
  "index",
793
- "spawn_id",
733
+ "identifier",
794
734
  )
795
735
 
796
736
  def __new__(
797
737
  cls,
798
738
  index: int = 0,
799
- spawn_id: int = 0,
739
+ identifier: int = 0,
800
740
  ): ...
801
741
  def __init__(
802
742
  self,
803
743
  index: int = 0,
804
- spawn_id: int = 0,
744
+ identifier: int = 0,
805
745
  ): ...
806
746
  def pack(self) -> bytes:
807
747
  """
@@ -912,14 +852,53 @@ class ControllerState:
912
852
  """
913
853
  Serializes this instance into a byte array
914
854
  """
915
- def unpack_with(self, data: bytes) -> None:
855
+ @staticmethod
856
+ def unpack(data: bytes) -> ControllerState:
916
857
  """
917
- Deserializes the data into this instance
858
+ Deserializes the data into a new instance
918
859
 
919
860
  :raises InvalidFlatbuffer: If the `data` is invalid for this type
920
861
  """
862
+ def __str__(self) -> str: ...
863
+ def __repr__(self) -> str: ...
864
+
865
+ class CoreMessage:
866
+ item: DisconnectSignal | GamePacket | FieldInfo | MatchConfiguration | MatchComm | BallPrediction | ControllableTeamInfo | RenderingStatus
867
+
868
+ def __new__(
869
+ cls, item: DisconnectSignal | GamePacket | FieldInfo | MatchConfiguration | MatchComm | BallPrediction | ControllableTeamInfo | RenderingStatus = DisconnectSignal()
870
+ ): ...
871
+ def __init__(
872
+ self, item: DisconnectSignal | GamePacket | FieldInfo | MatchConfiguration | MatchComm | BallPrediction | ControllableTeamInfo | RenderingStatus = DisconnectSignal()
873
+ ): ...
874
+
875
+ def __str__(self) -> str: ...
876
+ def __repr__(self) -> str: ...
877
+
878
+ class CorePacket:
879
+ """
880
+ Packet containing a CoreMessage
881
+ """
882
+ message: CoreMessage
883
+
884
+ __match_args__ = (
885
+ "message",
886
+ )
887
+
888
+ def __new__(
889
+ cls,
890
+ message: DisconnectSignal | GamePacket | FieldInfo | MatchConfiguration | MatchComm | BallPrediction | ControllableTeamInfo | RenderingStatus = DisconnectSignal(),
891
+ ): ...
892
+ def __init__(
893
+ self,
894
+ message: DisconnectSignal | GamePacket | FieldInfo | MatchConfiguration | MatchComm | BallPrediction | ControllableTeamInfo | RenderingStatus = DisconnectSignal(),
895
+ ): ...
896
+ def pack(self) -> bytes:
897
+ """
898
+ Serializes this instance into a byte array
899
+ """
921
900
  @staticmethod
922
- def unpack(data: bytes) -> ControllerState:
901
+ def unpack(data: bytes) -> CorePacket:
923
902
  """
924
903
  Deserializes the data into a new instance
925
904
 
@@ -932,17 +911,67 @@ class CustomBot:
932
911
  """
933
912
  A bot controlled by the RLBot framework.
934
913
  """
935
- def __init__(self): ...
914
+ name: str
915
+ """
916
+ Requested bot name. When match start, RLBot will ensure each bot has a unique name; bots with
917
+ duplicate names will be renamed with a suffix like `(2)`
918
+ """
919
+ root_dir: str
920
+ """
921
+ The root directory of the bot and the working directory for the run command.
922
+ """
923
+ run_command: str
924
+ """
925
+ The console command that starts this bot.
926
+ """
927
+ loadout: Optional[PlayerLoadout]
928
+ """
929
+ The loadout of the player.
930
+ """
931
+ agent_id: str
932
+ """
933
+ A unique user-defined string that is used to connect clients to the right players/scripts.
934
+ If a bot/script has a run command, RLBot will pass this agent id to the process using an environment variable, RLBOT_AGENT_ID.
935
+ Upon connecting the process announces that it is responsible for this agent id and RLBot will pair the two.
936
+ The recommended format for agent ids is "developer_name/bot_name".
937
+ """
938
+ hivemind: bool
939
+ """
940
+ Whether this player is part of a hivemind bot where all players/cars are controlled by the same process.
941
+ Players in the hivemind must have the same name, team, run command, and agent id.
942
+ """
943
+
944
+ __match_args__ = (
945
+ "name",
946
+ "root_dir",
947
+ "run_command",
948
+ "loadout",
949
+ "agent_id",
950
+ "hivemind",
951
+ )
952
+
953
+ def __new__(
954
+ cls,
955
+ name: str = "",
956
+ root_dir: str = "",
957
+ run_command: str = "",
958
+ loadout: Optional[PlayerLoadout] = None,
959
+ agent_id: str = "",
960
+ hivemind: bool = False,
961
+ ): ...
962
+ def __init__(
963
+ self,
964
+ name: str = "",
965
+ root_dir: str = "",
966
+ run_command: str = "",
967
+ loadout: Optional[PlayerLoadout] = None,
968
+ agent_id: str = "",
969
+ hivemind: bool = False,
970
+ ): ...
936
971
  def pack(self) -> bytes:
937
972
  """
938
973
  Serializes this instance into a byte array
939
974
  """
940
- def unpack_with(self, data: bytes) -> None:
941
- """
942
- Deserializes the data into this instance
943
-
944
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
945
- """
946
975
  @staticmethod
947
976
  def unpack(data: bytes) -> CustomBot:
948
977
  """
@@ -980,12 +1009,6 @@ class CylinderShape:
980
1009
  """
981
1010
  Serializes this instance into a byte array
982
1011
  """
983
- def unpack_with(self, data: bytes) -> None:
984
- """
985
- Deserializes the data into this instance
986
-
987
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
988
- """
989
1012
  @staticmethod
990
1013
  def unpack(data: bytes) -> CylinderShape:
991
1014
  """
@@ -996,6 +1019,31 @@ class CylinderShape:
996
1019
  def __str__(self) -> str: ...
997
1020
  def __repr__(self) -> str: ...
998
1021
 
1022
+ class DebugRendering:
1023
+ OffByDefault = DebugRendering(0)
1024
+ """
1025
+ Renders are ignored unless explicitly enabled per-agent
1026
+ """
1027
+ OnByDefault = DebugRendering(1)
1028
+ """
1029
+ Rendering is enabled for everyone by default
1030
+ """
1031
+ AlwaysOff = DebugRendering(2)
1032
+ """
1033
+ Ignore all render attempts at all times
1034
+ """
1035
+
1036
+ def __new__(cls, value: int = 0): ...
1037
+ def __init__(self, value: int = 0):
1038
+ """
1039
+ :raises ValueError: If the `value` is not a valid enum value
1040
+ """
1041
+ def __int__(self) -> int: ...
1042
+ def __eq__(self, other: DebugRendering) -> bool: ...
1043
+ def __hash__(self) -> str: ...
1044
+ def __str__(self) -> str: ...
1045
+ def __repr__(self) -> str: ...
1046
+
999
1047
  class DemolishMutator:
1000
1048
  Default = DemolishMutator(0)
1001
1049
  Disabled = DemolishMutator(1)
@@ -1056,12 +1104,6 @@ class DesiredBallState:
1056
1104
  """
1057
1105
  Serializes this instance into a byte array
1058
1106
  """
1059
- def unpack_with(self, data: bytes) -> None:
1060
- """
1061
- Deserializes the data into this instance
1062
-
1063
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
1064
- """
1065
1107
  @staticmethod
1066
1108
  def unpack(data: bytes) -> DesiredBallState:
1067
1109
  """
@@ -1099,12 +1141,6 @@ class DesiredCarState:
1099
1141
  """
1100
1142
  Serializes this instance into a byte array
1101
1143
  """
1102
- def unpack_with(self, data: bytes) -> None:
1103
- """
1104
- Deserializes the data into this instance
1105
-
1106
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
1107
- """
1108
1144
  @staticmethod
1109
1145
  def unpack(data: bytes) -> DesiredCarState:
1110
1146
  """
@@ -1164,12 +1200,6 @@ class DesiredGameState:
1164
1200
  """
1165
1201
  Serializes this instance into a byte array
1166
1202
  """
1167
- def unpack_with(self, data: bytes) -> None:
1168
- """
1169
- Deserializes the data into this instance
1170
-
1171
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
1172
- """
1173
1203
  @staticmethod
1174
1204
  def unpack(data: bytes) -> DesiredGameState:
1175
1205
  """
@@ -1214,12 +1244,6 @@ class DesiredMatchInfo:
1214
1244
  """
1215
1245
  Serializes this instance into a byte array
1216
1246
  """
1217
- def unpack_with(self, data: bytes) -> None:
1218
- """
1219
- Deserializes the data into this instance
1220
-
1221
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
1222
- """
1223
1247
  @staticmethod
1224
1248
  def unpack(data: bytes) -> DesiredMatchInfo:
1225
1249
  """
@@ -1266,14 +1290,28 @@ class DesiredPhysics:
1266
1290
  """
1267
1291
  Serializes this instance into a byte array
1268
1292
  """
1269
- def unpack_with(self, data: bytes) -> None:
1293
+ @staticmethod
1294
+ def unpack(data: bytes) -> DesiredPhysics:
1270
1295
  """
1271
- Deserializes the data into this instance
1296
+ Deserializes the data into a new instance
1272
1297
 
1273
1298
  :raises InvalidFlatbuffer: If the `data` is invalid for this type
1274
1299
  """
1300
+ def __str__(self) -> str: ...
1301
+ def __repr__(self) -> str: ...
1302
+
1303
+ class DisconnectSignal:
1304
+ """
1305
+ Sent to core to indicate that you want to disconnect.
1306
+ Sent from core to indicate that you should exit.
1307
+ """
1308
+ def __init__(self): ...
1309
+ def pack(self) -> bytes:
1310
+ """
1311
+ Serializes this instance into a byte array
1312
+ """
1275
1313
  @staticmethod
1276
- def unpack(data: bytes) -> DesiredPhysics:
1314
+ def unpack(data: bytes) -> DisconnectSignal:
1277
1315
  """
1278
1316
  Deserializes the data into a new instance
1279
1317
 
@@ -1391,12 +1429,6 @@ class Float:
1391
1429
  """
1392
1430
  Serializes this instance into a byte array
1393
1431
  """
1394
- def unpack_with(self, data: bytes) -> None:
1395
- """
1396
- Deserializes the data into this instance
1397
-
1398
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
1399
- """
1400
1432
  @staticmethod
1401
1433
  def unpack(data: bytes) -> Float:
1402
1434
  """
@@ -1424,10 +1456,10 @@ class GameEventMutator:
1424
1456
  def __repr__(self) -> str: ...
1425
1457
 
1426
1458
  class GameMode:
1427
- Soccer = GameMode(0)
1459
+ Soccar = GameMode(0)
1428
1460
  Hoops = GameMode(1)
1429
1461
  Dropshot = GameMode(2)
1430
- Hockey = GameMode(3)
1462
+ Snowday = GameMode(3)
1431
1463
  Rumble = GameMode(4)
1432
1464
  Heatseeker = GameMode(5)
1433
1465
  Gridiron = GameMode(6)
@@ -1501,12 +1533,6 @@ class GamePacket:
1501
1533
  """
1502
1534
  Serializes this instance into a byte array
1503
1535
  """
1504
- def unpack_with(self, data: bytes) -> None:
1505
- """
1506
- Deserializes the data into this instance
1507
-
1508
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
1509
- """
1510
1536
  @staticmethod
1511
1537
  def unpack(data: bytes) -> GamePacket:
1512
1538
  """
@@ -1624,14 +1650,28 @@ class Human:
1624
1650
  """
1625
1651
  Serializes this instance into a byte array
1626
1652
  """
1627
- def unpack_with(self, data: bytes) -> None:
1653
+ @staticmethod
1654
+ def unpack(data: bytes) -> Human:
1628
1655
  """
1629
- Deserializes the data into this instance
1656
+ Deserializes the data into a new instance
1630
1657
 
1631
1658
  :raises InvalidFlatbuffer: If the `data` is invalid for this type
1632
1659
  """
1660
+ def __str__(self) -> str: ...
1661
+ def __repr__(self) -> str: ...
1662
+
1663
+ class InitComplete:
1664
+ """
1665
+ Indicates that the session has finished all initialization and is ready to start receiving
1666
+ game messages without delay.
1667
+ """
1668
+ def __init__(self): ...
1669
+ def pack(self) -> bytes:
1670
+ """
1671
+ Serializes this instance into a byte array
1672
+ """
1633
1673
  @staticmethod
1634
- def unpack(data: bytes) -> Human:
1674
+ def unpack(data: bytes) -> InitComplete:
1635
1675
  """
1636
1676
  Deserializes the data into a new instance
1637
1677
 
@@ -1655,6 +1695,51 @@ class InputRestrictionMutator:
1655
1695
  def __str__(self) -> str: ...
1656
1696
  def __repr__(self) -> str: ...
1657
1697
 
1698
+ class InterfaceMessage:
1699
+ item: DisconnectSignal | StartCommand | MatchConfiguration | PlayerInput | DesiredGameState | RenderGroup | RemoveRenderGroup | MatchComm | ConnectionSettings | StopCommand | SetLoadout | InitComplete | RenderingStatus
1700
+
1701
+ def __new__(
1702
+ cls, item: DisconnectSignal | StartCommand | MatchConfiguration | PlayerInput | DesiredGameState | RenderGroup | RemoveRenderGroup | MatchComm | ConnectionSettings | StopCommand | SetLoadout | InitComplete | RenderingStatus = DisconnectSignal()
1703
+ ): ...
1704
+ def __init__(
1705
+ self, item: DisconnectSignal | StartCommand | MatchConfiguration | PlayerInput | DesiredGameState | RenderGroup | RemoveRenderGroup | MatchComm | ConnectionSettings | StopCommand | SetLoadout | InitComplete | RenderingStatus = DisconnectSignal()
1706
+ ): ...
1707
+
1708
+ def __str__(self) -> str: ...
1709
+ def __repr__(self) -> str: ...
1710
+
1711
+ class InterfacePacket:
1712
+ """
1713
+ Packet containing a InterfaceMessage
1714
+ """
1715
+ message: InterfaceMessage
1716
+
1717
+ __match_args__ = (
1718
+ "message",
1719
+ )
1720
+
1721
+ def __new__(
1722
+ cls,
1723
+ message: DisconnectSignal | StartCommand | MatchConfiguration | PlayerInput | DesiredGameState | RenderGroup | RemoveRenderGroup | MatchComm | ConnectionSettings | StopCommand | SetLoadout | InitComplete | RenderingStatus = DisconnectSignal(),
1724
+ ): ...
1725
+ def __init__(
1726
+ self,
1727
+ message: DisconnectSignal | StartCommand | MatchConfiguration | PlayerInput | DesiredGameState | RenderGroup | RemoveRenderGroup | MatchComm | ConnectionSettings | StopCommand | SetLoadout | InitComplete | RenderingStatus = DisconnectSignal(),
1728
+ ): ...
1729
+ def pack(self) -> bytes:
1730
+ """
1731
+ Serializes this instance into a byte array
1732
+ """
1733
+ @staticmethod
1734
+ def unpack(data: bytes) -> InterfacePacket:
1735
+ """
1736
+ Deserializes the data into a new instance
1737
+
1738
+ :raises InvalidFlatbuffer: If the `data` is invalid for this type
1739
+ """
1740
+ def __str__(self) -> str: ...
1741
+ def __repr__(self) -> str: ...
1742
+
1658
1743
  class JumpMutator:
1659
1744
  Default = JumpMutator(0)
1660
1745
  Grounded = JumpMutator(1)
@@ -1726,12 +1811,6 @@ class Line3D:
1726
1811
  """
1727
1812
  Serializes this instance into a byte array
1728
1813
  """
1729
- def unpack_with(self, data: bytes) -> None:
1730
- """
1731
- Deserializes the data into this instance
1732
-
1733
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
1734
- """
1735
1814
  @staticmethod
1736
1815
  def unpack(data: bytes) -> Line3D:
1737
1816
  """
@@ -1792,12 +1871,6 @@ class LoadoutPaint:
1792
1871
  """
1793
1872
  Serializes this instance into a byte array
1794
1873
  """
1795
- def unpack_with(self, data: bytes) -> None:
1796
- """
1797
- Deserializes the data into this instance
1798
-
1799
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
1800
- """
1801
1874
  @staticmethod
1802
1875
  def unpack(data: bytes) -> LoadoutPaint:
1803
1876
  """
@@ -1868,12 +1941,6 @@ class MatchComm:
1868
1941
  """
1869
1942
  Serializes this instance into a byte array
1870
1943
  """
1871
- def unpack_with(self, data: bytes) -> None:
1872
- """
1873
- Deserializes the data into this instance
1874
-
1875
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
1876
- """
1877
1944
  @staticmethod
1878
1945
  def unpack(data: bytes) -> MatchComm:
1879
1946
  """
@@ -1946,7 +2013,7 @@ class MatchConfiguration:
1946
2013
  """
1947
2014
  How to handle any ongoing match.
1948
2015
  """
1949
- enable_rendering: bool
2016
+ enable_rendering: DebugRendering
1950
2017
  """
1951
2018
  Whether debug rendering is displayed.
1952
2019
  """
@@ -1997,7 +2064,7 @@ class MatchConfiguration:
1997
2064
  instant_start: bool = False,
1998
2065
  mutators: Optional[MutatorSettings] = None,
1999
2066
  existing_match_behavior: ExistingMatchBehavior = ExistingMatchBehavior(),
2000
- enable_rendering: bool = False,
2067
+ enable_rendering: DebugRendering = DebugRendering(),
2001
2068
  enable_state_setting: bool = False,
2002
2069
  auto_save_replay: bool = False,
2003
2070
  freeplay: bool = False,
@@ -2016,7 +2083,7 @@ class MatchConfiguration:
2016
2083
  instant_start: bool = False,
2017
2084
  mutators: Optional[MutatorSettings] = None,
2018
2085
  existing_match_behavior: ExistingMatchBehavior = ExistingMatchBehavior(),
2019
- enable_rendering: bool = False,
2086
+ enable_rendering: DebugRendering = DebugRendering(),
2020
2087
  enable_state_setting: bool = False,
2021
2088
  auto_save_replay: bool = False,
2022
2089
  freeplay: bool = False,
@@ -2025,12 +2092,6 @@ class MatchConfiguration:
2025
2092
  """
2026
2093
  Serializes this instance into a byte array
2027
2094
  """
2028
- def unpack_with(self, data: bytes) -> None:
2029
- """
2030
- Deserializes the data into this instance
2031
-
2032
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
2033
- """
2034
2095
  @staticmethod
2035
2096
  def unpack(data: bytes) -> MatchConfiguration:
2036
2097
  """
@@ -2127,12 +2188,6 @@ class MatchInfo:
2127
2188
  """
2128
2189
  Serializes this instance into a byte array
2129
2190
  """
2130
- def unpack_with(self, data: bytes) -> None:
2131
- """
2132
- Deserializes the data into this instance
2133
-
2134
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
2135
- """
2136
2191
  @staticmethod
2137
2192
  def unpack(data: bytes) -> MatchInfo:
2138
2193
  """
@@ -2502,12 +2557,6 @@ class MutatorSettings:
2502
2557
  """
2503
2558
  Serializes this instance into a byte array
2504
2559
  """
2505
- def unpack_with(self, data: bytes) -> None:
2506
- """
2507
- Deserializes the data into this instance
2508
-
2509
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
2510
- """
2511
2560
  @staticmethod
2512
2561
  def unpack(data: bytes) -> MutatorSettings:
2513
2562
  """
@@ -2553,32 +2602,6 @@ class OvertimeMutator:
2553
2602
  def __str__(self) -> str: ...
2554
2603
  def __repr__(self) -> str: ...
2555
2604
 
2556
- class PartyMember:
2557
- """
2558
- A player that Rocket League treats as human, e.g. has a dedicated camera and can do training mode,
2559
- but is actually controlled by a bot.
2560
- """
2561
- def __init__(self): ...
2562
- def pack(self) -> bytes:
2563
- """
2564
- Serializes this instance into a byte array
2565
- """
2566
- def unpack_with(self, data: bytes) -> None:
2567
- """
2568
- Deserializes the data into this instance
2569
-
2570
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
2571
- """
2572
- @staticmethod
2573
- def unpack(data: bytes) -> PartyMember:
2574
- """
2575
- Deserializes the data into a new instance
2576
-
2577
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
2578
- """
2579
- def __str__(self) -> str: ...
2580
- def __repr__(self) -> str: ...
2581
-
2582
2605
  class Physics:
2583
2606
  location: Vector3
2584
2607
  rotation: Rotator
@@ -2610,12 +2633,6 @@ class Physics:
2610
2633
  """
2611
2634
  Serializes this instance into a byte array
2612
2635
  """
2613
- def unpack_with(self, data: bytes) -> None:
2614
- """
2615
- Deserializes the data into this instance
2616
-
2617
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
2618
- """
2619
2636
  @staticmethod
2620
2637
  def unpack(data: bytes) -> Physics:
2621
2638
  """
@@ -2627,13 +2644,13 @@ class Physics:
2627
2644
  def __repr__(self) -> str: ...
2628
2645
 
2629
2646
  class PlayerClass:
2630
- item: CustomBot | Human | Psyonix | PartyMember
2647
+ item: Human | CustomBot | PsyonixBot
2631
2648
 
2632
2649
  def __new__(
2633
- cls, item: CustomBot | Human | Psyonix | PartyMember = CustomBot()
2650
+ cls, item: Human | CustomBot | PsyonixBot = Human()
2634
2651
  ): ...
2635
2652
  def __init__(
2636
- self, item: CustomBot | Human | Psyonix | PartyMember = CustomBot()
2653
+ self, item: Human | CustomBot | PsyonixBot = Human()
2637
2654
  ): ...
2638
2655
 
2639
2656
  def __str__(self) -> str: ...
@@ -2647,94 +2664,39 @@ class PlayerConfiguration:
2647
2664
  """
2648
2665
  The type of the player, i.e. human, Psyonix bot, or a custom bot.
2649
2666
  """
2650
- name: str
2651
- """
2652
- The name of the player.
2653
- When match start, RLBot will ensure each bot has a unique name.
2654
- In other words, the MatchConfiguration sent upon match start may contain a "Nexto (2)" if there are two Nextos in the match.
2655
- """
2656
2667
  team: int
2657
2668
  """
2658
2669
  The team of the player. Blue is 0, orange is 1.
2659
2670
  """
2660
- root_dir: str
2661
- """
2662
- The root directory of the bot and the working directory for the run command.
2663
- """
2664
- run_command: str
2671
+ player_id: int
2665
2672
  """
2666
- The console command that starts this bot.
2667
- """
2668
- loadout: Optional[PlayerLoadout]
2669
- """
2670
- The loadout of the player.
2671
- """
2672
- spawn_id: int
2673
- """
2674
- The spawn id of the player.
2675
- The value will be set by RLBot.
2673
+ The value will be set by RLBot and is always overriden.
2676
2674
  This value is mostly used internally to keep track of participants in the match.
2677
- The spawn id can be used to find the corresponding player in the GamePacket.
2678
- """
2679
- agent_id: str
2680
- """
2681
- A unique user-defined string that is used to connect clients to the right players/scripts.
2682
- If a bot/script has a run command, RLBot will pass this agent id to the process using an environment variable, RLBOT_AGENT_ID.
2683
- Upon connecting the process announces that it is responsible for this agent id and RLBot will pair the two.
2684
- The recommended format for agent ids is "developer_name/bot_name".
2685
- """
2686
- hivemind: bool
2687
- """
2688
- Whether this player is part of a hivemind bot where all players/cars are controlled by the same process.
2689
- Players in the hivemind must have the same name, team, run command, and agent id.
2675
+ The player id can be used to find the corresponding player in the GamePacket.
2690
2676
  """
2691
2677
 
2692
2678
  __match_args__ = (
2693
2679
  "variety",
2694
- "name",
2695
2680
  "team",
2696
- "root_dir",
2697
- "run_command",
2698
- "loadout",
2699
- "spawn_id",
2700
- "agent_id",
2701
- "hivemind",
2681
+ "player_id",
2702
2682
  )
2703
2683
 
2704
2684
  def __new__(
2705
2685
  cls,
2706
- variety: CustomBot | Human | Psyonix | PartyMember = CustomBot(),
2707
- name: str = "",
2686
+ variety: Human | CustomBot | PsyonixBot = Human(),
2708
2687
  team: int = 0,
2709
- root_dir: str = "",
2710
- run_command: str = "",
2711
- loadout: Optional[PlayerLoadout] = None,
2712
- spawn_id: int = 0,
2713
- agent_id: str = "",
2714
- hivemind: bool = False,
2688
+ player_id: int = 0,
2715
2689
  ): ...
2716
2690
  def __init__(
2717
2691
  self,
2718
- variety: CustomBot | Human | Psyonix | PartyMember = CustomBot(),
2719
- name: str = "",
2692
+ variety: Human | CustomBot | PsyonixBot = Human(),
2720
2693
  team: int = 0,
2721
- root_dir: str = "",
2722
- run_command: str = "",
2723
- loadout: Optional[PlayerLoadout] = None,
2724
- spawn_id: int = 0,
2725
- agent_id: str = "",
2726
- hivemind: bool = False,
2694
+ player_id: int = 0,
2727
2695
  ): ...
2728
2696
  def pack(self) -> bytes:
2729
2697
  """
2730
2698
  Serializes this instance into a byte array
2731
2699
  """
2732
- def unpack_with(self, data: bytes) -> None:
2733
- """
2734
- Deserializes the data into this instance
2735
-
2736
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
2737
- """
2738
2700
  @staticmethod
2739
2701
  def unpack(data: bytes) -> PlayerConfiguration:
2740
2702
  """
@@ -2809,11 +2771,11 @@ class PlayerInfo:
2809
2771
  """
2810
2772
  The current boost, from 0 to 100.
2811
2773
  """
2812
- spawn_id: int
2774
+ player_id: int
2813
2775
  """
2814
- The spawn id of the player.
2776
+ The id of the player.
2815
2777
  This value is mostly used internally to keep track of participants in the match.
2816
- The spawn id can be used to find the corresponding PlayerConfiguration in the MatchConfiguration.
2778
+ The id can be used to find the corresponding PlayerConfiguration in the MatchConfiguration.
2817
2779
  """
2818
2780
  accolades: Sequence[str]
2819
2781
  """
@@ -2871,7 +2833,7 @@ class PlayerInfo:
2871
2833
  "name",
2872
2834
  "team",
2873
2835
  "boost",
2874
- "spawn_id",
2836
+ "player_id",
2875
2837
  "accolades",
2876
2838
  "last_input",
2877
2839
  "has_jumped",
@@ -2896,7 +2858,7 @@ class PlayerInfo:
2896
2858
  name: str = "",
2897
2859
  team: int = 0,
2898
2860
  boost: float = 0,
2899
- spawn_id: int = 0,
2861
+ player_id: int = 0,
2900
2862
  accolades: Sequence[str] = [],
2901
2863
  last_input: ControllerState = ControllerState(),
2902
2864
  has_jumped: bool = False,
@@ -2920,7 +2882,7 @@ class PlayerInfo:
2920
2882
  name: str = "",
2921
2883
  team: int = 0,
2922
2884
  boost: float = 0,
2923
- spawn_id: int = 0,
2885
+ player_id: int = 0,
2924
2886
  accolades: Sequence[str] = [],
2925
2887
  last_input: ControllerState = ControllerState(),
2926
2888
  has_jumped: bool = False,
@@ -2933,12 +2895,6 @@ class PlayerInfo:
2933
2895
  """
2934
2896
  Serializes this instance into a byte array
2935
2897
  """
2936
- def unpack_with(self, data: bytes) -> None:
2937
- """
2938
- Deserializes the data into this instance
2939
-
2940
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
2941
- """
2942
2898
  @staticmethod
2943
2899
  def unpack(data: bytes) -> PlayerInfo:
2944
2900
  """
@@ -2976,12 +2932,6 @@ class PlayerInput:
2976
2932
  """
2977
2933
  Serializes this instance into a byte array
2978
2934
  """
2979
- def unpack_with(self, data: bytes) -> None:
2980
- """
2981
- Deserializes the data into this instance
2982
-
2983
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
2984
- """
2985
2935
  @staticmethod
2986
2936
  def unpack(data: bytes) -> PlayerInput:
2987
2937
  """
@@ -3083,12 +3033,6 @@ class PlayerLoadout:
3083
3033
  """
3084
3034
  Serializes this instance into a byte array
3085
3035
  """
3086
- def unpack_with(self, data: bytes) -> None:
3087
- """
3088
- Deserializes the data into this instance
3089
-
3090
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
3091
- """
3092
3036
  @staticmethod
3093
3037
  def unpack(data: bytes) -> PlayerLoadout:
3094
3038
  """
@@ -3125,12 +3069,6 @@ class PolyLine3D:
3125
3069
  """
3126
3070
  Serializes this instance into a byte array
3127
3071
  """
3128
- def unpack_with(self, data: bytes) -> None:
3129
- """
3130
- Deserializes the data into this instance
3131
-
3132
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
3133
- """
3134
3072
  @staticmethod
3135
3073
  def unpack(data: bytes) -> PolyLine3D:
3136
3074
  """
@@ -3184,12 +3122,6 @@ class PredictionSlice:
3184
3122
  """
3185
3123
  Serializes this instance into a byte array
3186
3124
  """
3187
- def unpack_with(self, data: bytes) -> None:
3188
- """
3189
- Deserializes the data into this instance
3190
-
3191
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
3192
- """
3193
3125
  @staticmethod
3194
3126
  def unpack(data: bytes) -> PredictionSlice:
3195
3127
  """
@@ -3200,36 +3132,46 @@ class PredictionSlice:
3200
3132
  def __str__(self) -> str: ...
3201
3133
  def __repr__(self) -> str: ...
3202
3134
 
3203
- class Psyonix:
3135
+ class PsyonixBot:
3204
3136
  """
3205
3137
  A Psyonix bot, e.g. All Star bot.
3206
3138
  """
3139
+ name: str
3140
+ """
3141
+ Requested bot name. When match start, RLBot will ensure each bot has a unique name; bots with
3142
+ duplicate names will be renamed with a suffix like `(2)`. For psyonix bots, a blank name will
3143
+ be replaced with one of the official names.
3144
+ """
3145
+ loadout: Optional[PlayerLoadout]
3146
+ """
3147
+ The loadout of the player.
3148
+ """
3207
3149
  bot_skill: PsyonixSkill
3208
3150
 
3209
3151
  __match_args__ = (
3152
+ "name",
3153
+ "loadout",
3210
3154
  "bot_skill",
3211
3155
  )
3212
3156
 
3213
3157
  def __new__(
3214
3158
  cls,
3159
+ name: str = "",
3160
+ loadout: Optional[PlayerLoadout] = None,
3215
3161
  bot_skill: PsyonixSkill = PsyonixSkill(),
3216
3162
  ): ...
3217
3163
  def __init__(
3218
3164
  self,
3165
+ name: str = "",
3166
+ loadout: Optional[PlayerLoadout] = None,
3219
3167
  bot_skill: PsyonixSkill = PsyonixSkill(),
3220
3168
  ): ...
3221
3169
  def pack(self) -> bytes:
3222
3170
  """
3223
3171
  Serializes this instance into a byte array
3224
3172
  """
3225
- def unpack_with(self, data: bytes) -> None:
3226
- """
3227
- Deserializes the data into this instance
3228
-
3229
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
3230
- """
3231
3173
  @staticmethod
3232
- def unpack(data: bytes) -> Psyonix:
3174
+ def unpack(data: bytes) -> PsyonixBot:
3233
3175
  """
3234
3176
  Deserializes the data into a new instance
3235
3177
 
@@ -3323,12 +3265,6 @@ class Rect2D:
3323
3265
  """
3324
3266
  Serializes this instance into a byte array
3325
3267
  """
3326
- def unpack_with(self, data: bytes) -> None:
3327
- """
3328
- Deserializes the data into this instance
3329
-
3330
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
3331
- """
3332
3268
  @staticmethod
3333
3269
  def unpack(data: bytes) -> Rect2D:
3334
3270
  """
@@ -3400,12 +3336,6 @@ class Rect3D:
3400
3336
  """
3401
3337
  Serializes this instance into a byte array
3402
3338
  """
3403
- def unpack_with(self, data: bytes) -> None:
3404
- """
3405
- Deserializes the data into this instance
3406
-
3407
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
3408
- """
3409
3339
  @staticmethod
3410
3340
  def unpack(data: bytes) -> Rect3D:
3411
3341
  """
@@ -3452,12 +3382,6 @@ class RemoveRenderGroup:
3452
3382
  """
3453
3383
  Serializes this instance into a byte array
3454
3384
  """
3455
- def unpack_with(self, data: bytes) -> None:
3456
- """
3457
- Deserializes the data into this instance
3458
-
3459
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
3460
- """
3461
3385
  @staticmethod
3462
3386
  def unpack(data: bytes) -> RemoveRenderGroup:
3463
3387
  """
@@ -3504,12 +3428,6 @@ class RenderAnchor:
3504
3428
  """
3505
3429
  Serializes this instance into a byte array
3506
3430
  """
3507
- def unpack_with(self, data: bytes) -> None:
3508
- """
3509
- Deserializes the data into this instance
3510
-
3511
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
3512
- """
3513
3431
  @staticmethod
3514
3432
  def unpack(data: bytes) -> RenderAnchor:
3515
3433
  """
@@ -3555,12 +3473,6 @@ class RenderGroup:
3555
3473
  """
3556
3474
  Serializes this instance into a byte array
3557
3475
  """
3558
- def unpack_with(self, data: bytes) -> None:
3559
- """
3560
- Deserializes the data into this instance
3561
-
3562
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
3563
- """
3564
3476
  @staticmethod
3565
3477
  def unpack(data: bytes) -> RenderGroup:
3566
3478
  """
@@ -3593,12 +3505,6 @@ class RenderMessage:
3593
3505
  """
3594
3506
  Serializes this instance into a byte array
3595
3507
  """
3596
- def unpack_with(self, data: bytes) -> None:
3597
- """
3598
- Deserializes the data into this instance
3599
-
3600
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
3601
- """
3602
3508
  @staticmethod
3603
3509
  def unpack(data: bytes) -> RenderMessage:
3604
3510
  """
@@ -3622,6 +3528,58 @@ class RenderType:
3622
3528
  def __str__(self) -> str: ...
3623
3529
  def __repr__(self) -> str: ...
3624
3530
 
3531
+ class RenderingStatus:
3532
+ """
3533
+ As an interface message, this requests for a specificed agent to have its ability to render changed.
3534
+ This changed will then be broadcasted to all current connections as a core message.
3535
+ Does nothing if rendering has been completely disabled.
3536
+ """
3537
+ index: int
3538
+ """
3539
+ If `is_bot`, this is the index of the bot in `GamePacket` that has been updated.
3540
+ Otherwise, this is the index of the script in `MatchConfiguration` that has been updated.
3541
+ """
3542
+ is_bot: bool
3543
+ """
3544
+ Identifies if the index is that of a bot or a script
3545
+ """
3546
+ status: bool
3547
+ """
3548
+ If rendering is now enabled or disabled for the specific agent
3549
+ """
3550
+
3551
+ __match_args__ = (
3552
+ "index",
3553
+ "is_bot",
3554
+ "status",
3555
+ )
3556
+
3557
+ def __new__(
3558
+ cls,
3559
+ index: int = 0,
3560
+ is_bot: bool = False,
3561
+ status: bool = False,
3562
+ ): ...
3563
+ def __init__(
3564
+ self,
3565
+ index: int = 0,
3566
+ is_bot: bool = False,
3567
+ status: bool = False,
3568
+ ): ...
3569
+ def pack(self) -> bytes:
3570
+ """
3571
+ Serializes this instance into a byte array
3572
+ """
3573
+ @staticmethod
3574
+ def unpack(data: bytes) -> RenderingStatus:
3575
+ """
3576
+ Deserializes the data into a new instance
3577
+
3578
+ :raises InvalidFlatbuffer: If the `data` is invalid for this type
3579
+ """
3580
+ def __str__(self) -> str: ...
3581
+ def __repr__(self) -> str: ...
3582
+
3625
3583
  class RespawnTimeMutator:
3626
3584
  ThreeSeconds = RespawnTimeMutator(0)
3627
3585
  TwoSeconds = RespawnTimeMutator(1)
@@ -3666,12 +3624,6 @@ class Rotator:
3666
3624
  """
3667
3625
  Serializes this instance into a byte array
3668
3626
  """
3669
- def unpack_with(self, data: bytes) -> None:
3670
- """
3671
- Deserializes the data into this instance
3672
-
3673
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
3674
- """
3675
3627
  @staticmethod
3676
3628
  def unpack(data: bytes) -> Rotator:
3677
3629
  """
@@ -3724,12 +3676,6 @@ class RotatorPartial:
3724
3676
  """
3725
3677
  Serializes this instance into a byte array
3726
3678
  """
3727
- def unpack_with(self, data: bytes) -> None:
3728
- """
3729
- Deserializes the data into this instance
3730
-
3731
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
3732
- """
3733
3679
  @staticmethod
3734
3680
  def unpack(data: bytes) -> RotatorPartial:
3735
3681
  """
@@ -3809,12 +3755,6 @@ class ScoreInfo:
3809
3755
  """
3810
3756
  Serializes this instance into a byte array
3811
3757
  """
3812
- def unpack_with(self, data: bytes) -> None:
3813
- """
3814
- Deserializes the data into this instance
3815
-
3816
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
3817
- """
3818
3758
  @staticmethod
3819
3759
  def unpack(data: bytes) -> ScoreInfo:
3820
3760
  """
@@ -3841,9 +3781,9 @@ class ScriptConfiguration:
3841
3781
  """
3842
3782
  A console command that will start up the script.
3843
3783
  """
3844
- spawn_id: int
3784
+ script_id: int
3845
3785
  """
3846
- The spawn id of the script.
3786
+ The id of the script.
3847
3787
  This value is mostly used internally to keep track of participants in the match.
3848
3788
  """
3849
3789
  agent_id: str
@@ -3858,7 +3798,7 @@ class ScriptConfiguration:
3858
3798
  "name",
3859
3799
  "root_dir",
3860
3800
  "run_command",
3861
- "spawn_id",
3801
+ "script_id",
3862
3802
  "agent_id",
3863
3803
  )
3864
3804
 
@@ -3867,7 +3807,7 @@ class ScriptConfiguration:
3867
3807
  name: str = "",
3868
3808
  root_dir: str = "",
3869
3809
  run_command: str = "",
3870
- spawn_id: int = 0,
3810
+ script_id: int = 0,
3871
3811
  agent_id: str = "",
3872
3812
  ): ...
3873
3813
  def __init__(
@@ -3875,19 +3815,13 @@ class ScriptConfiguration:
3875
3815
  name: str = "",
3876
3816
  root_dir: str = "",
3877
3817
  run_command: str = "",
3878
- spawn_id: int = 0,
3818
+ script_id: int = 0,
3879
3819
  agent_id: str = "",
3880
3820
  ): ...
3881
3821
  def pack(self) -> bytes:
3882
3822
  """
3883
3823
  Serializes this instance into a byte array
3884
3824
  """
3885
- def unpack_with(self, data: bytes) -> None:
3886
- """
3887
- Deserializes the data into this instance
3888
-
3889
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
3890
- """
3891
3825
  @staticmethod
3892
3826
  def unpack(data: bytes) -> ScriptConfiguration:
3893
3827
  """
@@ -3950,12 +3884,6 @@ class SetLoadout:
3950
3884
  """
3951
3885
  Serializes this instance into a byte array
3952
3886
  """
3953
- def unpack_with(self, data: bytes) -> None:
3954
- """
3955
- Deserializes the data into this instance
3956
-
3957
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
3958
- """
3959
3887
  @staticmethod
3960
3888
  def unpack(data: bytes) -> SetLoadout:
3961
3889
  """
@@ -3989,12 +3917,6 @@ class SphereShape:
3989
3917
  """
3990
3918
  Serializes this instance into a byte array
3991
3919
  """
3992
- def unpack_with(self, data: bytes) -> None:
3993
- """
3994
- Deserializes the data into this instance
3995
-
3996
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
3997
- """
3998
3920
  @staticmethod
3999
3921
  def unpack(data: bytes) -> SphereShape:
4000
3922
  """
@@ -4042,12 +3964,6 @@ class StartCommand:
4042
3964
  """
4043
3965
  Serializes this instance into a byte array
4044
3966
  """
4045
- def unpack_with(self, data: bytes) -> None:
4046
- """
4047
- Deserializes the data into this instance
4048
-
4049
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
4050
- """
4051
3967
  @staticmethod
4052
3968
  def unpack(data: bytes) -> StartCommand:
4053
3969
  """
@@ -4080,12 +3996,6 @@ class StopCommand:
4080
3996
  """
4081
3997
  Serializes this instance into a byte array
4082
3998
  """
4083
- def unpack_with(self, data: bytes) -> None:
4084
- """
4085
- Deserializes the data into this instance
4086
-
4087
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
4088
- """
4089
3999
  @staticmethod
4090
4000
  def unpack(data: bytes) -> StopCommand:
4091
4001
  """
@@ -4172,12 +4082,6 @@ class String2D:
4172
4082
  """
4173
4083
  Serializes this instance into a byte array
4174
4084
  """
4175
- def unpack_with(self, data: bytes) -> None:
4176
- """
4177
- Deserializes the data into this instance
4178
-
4179
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
4180
- """
4181
4085
  @staticmethod
4182
4086
  def unpack(data: bytes) -> String2D:
4183
4087
  """
@@ -4256,12 +4160,6 @@ class String3D:
4256
4160
  """
4257
4161
  Serializes this instance into a byte array
4258
4162
  """
4259
- def unpack_with(self, data: bytes) -> None:
4260
- """
4261
- Deserializes the data into this instance
4262
-
4263
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
4264
- """
4265
4163
  @staticmethod
4266
4164
  def unpack(data: bytes) -> String3D:
4267
4165
  """
@@ -4299,12 +4197,6 @@ class TeamInfo:
4299
4197
  """
4300
4198
  Serializes this instance into a byte array
4301
4199
  """
4302
- def unpack_with(self, data: bytes) -> None:
4303
- """
4304
- Deserializes the data into this instance
4305
-
4306
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
4307
- """
4308
4200
  @staticmethod
4309
4201
  def unpack(data: bytes) -> TeamInfo:
4310
4202
  """
@@ -4408,12 +4300,6 @@ class Touch:
4408
4300
  """
4409
4301
  Serializes this instance into a byte array
4410
4302
  """
4411
- def unpack_with(self, data: bytes) -> None:
4412
- """
4413
- Deserializes the data into this instance
4414
-
4415
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
4416
- """
4417
4303
  @staticmethod
4418
4304
  def unpack(data: bytes) -> Touch:
4419
4305
  """
@@ -4447,12 +4333,6 @@ class Vector2:
4447
4333
  """
4448
4334
  Serializes this instance into a byte array
4449
4335
  """
4450
- def unpack_with(self, data: bytes) -> None:
4451
- """
4452
- Deserializes the data into this instance
4453
-
4454
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
4455
- """
4456
4336
  @staticmethod
4457
4337
  def unpack(data: bytes) -> Vector2:
4458
4338
  """
@@ -4490,12 +4370,6 @@ class Vector3:
4490
4370
  """
4491
4371
  Serializes this instance into a byte array
4492
4372
  """
4493
- def unpack_with(self, data: bytes) -> None:
4494
- """
4495
- Deserializes the data into this instance
4496
-
4497
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
4498
- """
4499
4373
  @staticmethod
4500
4374
  def unpack(data: bytes) -> Vector3:
4501
4375
  """
@@ -4538,12 +4412,6 @@ class Vector3Partial:
4538
4412
  """
4539
4413
  Serializes this instance into a byte array
4540
4414
  """
4541
- def unpack_with(self, data: bytes) -> None:
4542
- """
4543
- Deserializes the data into this instance
4544
-
4545
- :raises InvalidFlatbuffer: If the `data` is invalid for this type
4546
- """
4547
4415
  @staticmethod
4548
4416
  def unpack(data: bytes) -> Vector3Partial:
4549
4417
  """
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rlbot_flatbuffers
3
- Version: 0.16.0
3
+ Version: 0.17.0
4
4
  Classifier: Programming Language :: Rust
5
5
  Classifier: Programming Language :: Python :: Implementation :: CPython
6
6
  Classifier: Programming Language :: Python :: Implementation :: PyPy
@@ -9,7 +9,7 @@ Summary: A Python module implemented in Rust for serializing and deserializing R
9
9
  License: MIT
10
10
  Requires-Python: >=3.10
11
11
  Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
12
- Project-URL: Source Code, https://github.com/VirxEC/rlbot_flatbuffers_py
12
+ Project-URL: Source Code, https://github.com/RLBot/flatbuffers-python
13
13
 
14
14
  ## rlbot-flatbuffers
15
15
 
@@ -0,0 +1,8 @@
1
+ rlbot_flatbuffers-0.17.0.dist-info/METADATA,sha256=H4rjoCpm3d7wWfwx9D-cLlf1bnUkYx5pM_aQmBlf6eE,3909
2
+ rlbot_flatbuffers-0.17.0.dist-info/WHEEL,sha256=645d8J2spiF2lyRHPSZ1OnH3MlMKW8k-PCHF_y3VShY,95
3
+ rlbot_flatbuffers-0.17.0.dist-info/licenses/LICENSE,sha256=hyTFOPxHzy3qK-7kU1pXAMJ9lq2oeyrrhmM22ZIGr2k,1091
4
+ rlbot_flatbuffers/__init__.py,sha256=F5P4NTZrdoi0sGDYYT6KtaLKKZUcSOR_hW0vFAaFmhk,151
5
+ rlbot_flatbuffers/__init__.pyi,sha256=t6UT6HB-j7gF0Ln3vedTDPUDGkBffmYLryE5utml4ho,121803
6
+ rlbot_flatbuffers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ rlbot_flatbuffers/rlbot_flatbuffers.pyd,sha256=FRi0BbtOWntmMt75tn1XJ_mlOdjYVkJhyzYJy1uhBT0,1967616
8
+ rlbot_flatbuffers-0.17.0.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: maturin (1.8.3)
2
+ Generator: maturin (1.8.7)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp310-abi3-win_amd64
@@ -1,8 +0,0 @@
1
- rlbot_flatbuffers-0.16.0.dist-info/METADATA,sha256=eacnbMUJWzYu21vOXm6nKYQZNxC87vCtdW7N4whR8Lg,3912
2
- rlbot_flatbuffers-0.16.0.dist-info/WHEEL,sha256=GbZa854Nd4wq8FJ_cHwge55xWx0Hgf1aqY1IVa8I2To,95
3
- rlbot_flatbuffers-0.16.0.dist-info/licenses/LICENSE,sha256=hyTFOPxHzy3qK-7kU1pXAMJ9lq2oeyrrhmM22ZIGr2k,1091
4
- rlbot_flatbuffers/__init__.py,sha256=F5P4NTZrdoi0sGDYYT6KtaLKKZUcSOR_hW0vFAaFmhk,151
5
- rlbot_flatbuffers/__init__.pyi,sha256=TvW6Wa6IOWhEDyRSwGCKiph_khq6tzwLCsIxPNtwvuQ,126141
6
- rlbot_flatbuffers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- rlbot_flatbuffers/rlbot_flatbuffers.pyd,sha256=tYX2HANEcY1kK2gp4tcFoTPw6MJXPB03VeFM8r9jjUw,2165248
8
- rlbot_flatbuffers-0.16.0.dist-info/RECORD,,