rlbot-flatbuffers 0.14.6__cp310-abi3-win_amd64.whl → 0.15.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.
- rlbot_flatbuffers/__init__.pyi +318 -15
- rlbot_flatbuffers/rlbot_flatbuffers.pyd +0 -0
- {rlbot_flatbuffers-0.14.6.dist-info → rlbot_flatbuffers-0.15.0.dist-info}/METADATA +1 -1
- rlbot_flatbuffers-0.15.0.dist-info/RECORD +8 -0
- rlbot_flatbuffers-0.14.6.dist-info/RECORD +0 -8
- {rlbot_flatbuffers-0.14.6.dist-info → rlbot_flatbuffers-0.15.0.dist-info}/WHEEL +0 -0
- {rlbot_flatbuffers-0.14.6.dist-info → rlbot_flatbuffers-0.15.0.dist-info}/licenses/LICENSE +0 -0
rlbot_flatbuffers/__init__.pyi
CHANGED
|
@@ -7,6 +7,25 @@ __version__: str
|
|
|
7
7
|
|
|
8
8
|
class InvalidFlatbuffer(ValueError): ...
|
|
9
9
|
|
|
10
|
+
class AerialGoalScoreMutator:
|
|
11
|
+
One = AerialGoalScoreMutator(0)
|
|
12
|
+
Zero = AerialGoalScoreMutator(1)
|
|
13
|
+
Two = AerialGoalScoreMutator(2)
|
|
14
|
+
Three = AerialGoalScoreMutator(3)
|
|
15
|
+
Five = AerialGoalScoreMutator(4)
|
|
16
|
+
Ten = AerialGoalScoreMutator(5)
|
|
17
|
+
|
|
18
|
+
def __new__(cls, value: int = 0): ...
|
|
19
|
+
def __init__(self, value: int = 0):
|
|
20
|
+
"""
|
|
21
|
+
:raises ValueError: If the `value` is not a valid enum value
|
|
22
|
+
"""
|
|
23
|
+
def __int__(self) -> int: ...
|
|
24
|
+
def __eq__(self, other: AerialGoalScoreMutator) -> bool: ...
|
|
25
|
+
def __hash__(self) -> str: ...
|
|
26
|
+
def __str__(self) -> str: ...
|
|
27
|
+
def __repr__(self) -> str: ...
|
|
28
|
+
|
|
10
29
|
class AirState:
|
|
11
30
|
OnGround = AirState(0)
|
|
12
31
|
"""
|
|
@@ -46,6 +65,23 @@ class AirState:
|
|
|
46
65
|
def __str__(self) -> str: ...
|
|
47
66
|
def __repr__(self) -> str: ...
|
|
48
67
|
|
|
68
|
+
class AssistGoalScoreMutator:
|
|
69
|
+
Zero = AssistGoalScoreMutator(0)
|
|
70
|
+
One = AssistGoalScoreMutator(1)
|
|
71
|
+
Two = AssistGoalScoreMutator(2)
|
|
72
|
+
Three = AssistGoalScoreMutator(3)
|
|
73
|
+
|
|
74
|
+
def __new__(cls, value: int = 0): ...
|
|
75
|
+
def __init__(self, value: int = 0):
|
|
76
|
+
"""
|
|
77
|
+
:raises ValueError: If the `value` is not a valid enum value
|
|
78
|
+
"""
|
|
79
|
+
def __int__(self) -> int: ...
|
|
80
|
+
def __eq__(self, other: AssistGoalScoreMutator) -> bool: ...
|
|
81
|
+
def __hash__(self) -> str: ...
|
|
82
|
+
def __str__(self) -> str: ...
|
|
83
|
+
def __repr__(self) -> str: ...
|
|
84
|
+
|
|
49
85
|
class AudioMutator:
|
|
50
86
|
Default = AudioMutator(0)
|
|
51
87
|
Haunted = AudioMutator(1)
|
|
@@ -116,7 +152,7 @@ class BallBouncinessMutator:
|
|
|
116
152
|
Low = BallBouncinessMutator(1)
|
|
117
153
|
High = BallBouncinessMutator(2)
|
|
118
154
|
SuperHigh = BallBouncinessMutator(3)
|
|
119
|
-
|
|
155
|
+
Lowish = BallBouncinessMutator(4)
|
|
120
156
|
|
|
121
157
|
def __new__(cls, value: int = 0): ...
|
|
122
158
|
def __init__(self, value: int = 0):
|
|
@@ -129,6 +165,23 @@ class BallBouncinessMutator:
|
|
|
129
165
|
def __str__(self) -> str: ...
|
|
130
166
|
def __repr__(self) -> str: ...
|
|
131
167
|
|
|
168
|
+
class BallGravityMutator:
|
|
169
|
+
Default = BallGravityMutator(0)
|
|
170
|
+
Low = BallGravityMutator(1)
|
|
171
|
+
High = BallGravityMutator(2)
|
|
172
|
+
SuperHigh = BallGravityMutator(3)
|
|
173
|
+
|
|
174
|
+
def __new__(cls, value: int = 0): ...
|
|
175
|
+
def __init__(self, value: int = 0):
|
|
176
|
+
"""
|
|
177
|
+
:raises ValueError: If the `value` is not a valid enum value
|
|
178
|
+
"""
|
|
179
|
+
def __int__(self) -> int: ...
|
|
180
|
+
def __eq__(self, other: BallGravityMutator) -> bool: ...
|
|
181
|
+
def __hash__(self) -> str: ...
|
|
182
|
+
def __str__(self) -> str: ...
|
|
183
|
+
def __repr__(self) -> str: ...
|
|
184
|
+
|
|
132
185
|
class BallInfo:
|
|
133
186
|
"""
|
|
134
187
|
Information about a ball.
|
|
@@ -265,6 +318,10 @@ class BallTypeMutator:
|
|
|
265
318
|
Haunted = BallTypeMutator(6)
|
|
266
319
|
Ekin = BallTypeMutator(7)
|
|
267
320
|
SpookyCube = BallTypeMutator(8)
|
|
321
|
+
Egg = BallTypeMutator(9)
|
|
322
|
+
PlayerSeeking = BallTypeMutator(10)
|
|
323
|
+
Dropshot = BallTypeMutator(11)
|
|
324
|
+
ScoreAbsorb = BallTypeMutator(12)
|
|
268
325
|
|
|
269
326
|
def __new__(cls, value: int = 0): ...
|
|
270
327
|
def __init__(self, value: int = 0):
|
|
@@ -945,6 +1002,8 @@ class DemolishMutator:
|
|
|
945
1002
|
FriendlyFire = DemolishMutator(2)
|
|
946
1003
|
OnContact = DemolishMutator(3)
|
|
947
1004
|
OnContactFF = DemolishMutator(4)
|
|
1005
|
+
OnBallContact = DemolishMutator(5)
|
|
1006
|
+
OnBallContactFF = DemolishMutator(6)
|
|
948
1007
|
|
|
949
1008
|
def __new__(cls, value: int = 0): ...
|
|
950
1009
|
def __init__(self, value: int = 0):
|
|
@@ -957,6 +1016,23 @@ class DemolishMutator:
|
|
|
957
1016
|
def __str__(self) -> str: ...
|
|
958
1017
|
def __repr__(self) -> str: ...
|
|
959
1018
|
|
|
1019
|
+
class DemolishScoreMutator:
|
|
1020
|
+
Zero = DemolishScoreMutator(0)
|
|
1021
|
+
One = DemolishScoreMutator(1)
|
|
1022
|
+
Two = DemolishScoreMutator(2)
|
|
1023
|
+
Three = DemolishScoreMutator(3)
|
|
1024
|
+
|
|
1025
|
+
def __new__(cls, value: int = 0): ...
|
|
1026
|
+
def __init__(self, value: int = 0):
|
|
1027
|
+
"""
|
|
1028
|
+
:raises ValueError: If the `value` is not a valid enum value
|
|
1029
|
+
"""
|
|
1030
|
+
def __int__(self) -> int: ...
|
|
1031
|
+
def __eq__(self, other: DemolishScoreMutator) -> bool: ...
|
|
1032
|
+
def __hash__(self) -> str: ...
|
|
1033
|
+
def __str__(self) -> str: ...
|
|
1034
|
+
def __repr__(self) -> str: ...
|
|
1035
|
+
|
|
960
1036
|
class DesiredBallState:
|
|
961
1037
|
"""
|
|
962
1038
|
A ball state with nullable components.
|
|
@@ -1206,6 +1282,23 @@ class DesiredPhysics:
|
|
|
1206
1282
|
def __str__(self) -> str: ...
|
|
1207
1283
|
def __repr__(self) -> str: ...
|
|
1208
1284
|
|
|
1285
|
+
class DodgeTimerMutator:
|
|
1286
|
+
OnePointTwentyFiveSeconds = DodgeTimerMutator(0)
|
|
1287
|
+
TwoSeconds = DodgeTimerMutator(1)
|
|
1288
|
+
ThreeSeconds = DodgeTimerMutator(2)
|
|
1289
|
+
Unlimited = DodgeTimerMutator(3)
|
|
1290
|
+
|
|
1291
|
+
def __new__(cls, value: int = 0): ...
|
|
1292
|
+
def __init__(self, value: int = 0):
|
|
1293
|
+
"""
|
|
1294
|
+
:raises ValueError: If the `value` is not a valid enum value
|
|
1295
|
+
"""
|
|
1296
|
+
def __int__(self) -> int: ...
|
|
1297
|
+
def __eq__(self, other: DodgeTimerMutator) -> bool: ...
|
|
1298
|
+
def __hash__(self) -> str: ...
|
|
1299
|
+
def __str__(self) -> str: ...
|
|
1300
|
+
def __repr__(self) -> str: ...
|
|
1301
|
+
|
|
1209
1302
|
class ExistingMatchBehavior:
|
|
1210
1303
|
Restart = ExistingMatchBehavior(0)
|
|
1211
1304
|
"""
|
|
@@ -1547,6 +1640,41 @@ class Human:
|
|
|
1547
1640
|
def __str__(self) -> str: ...
|
|
1548
1641
|
def __repr__(self) -> str: ...
|
|
1549
1642
|
|
|
1643
|
+
class InputRestrictionMutator:
|
|
1644
|
+
Default = InputRestrictionMutator(0)
|
|
1645
|
+
Backwards = InputRestrictionMutator(1)
|
|
1646
|
+
|
|
1647
|
+
def __new__(cls, value: int = 0): ...
|
|
1648
|
+
def __init__(self, value: int = 0):
|
|
1649
|
+
"""
|
|
1650
|
+
:raises ValueError: If the `value` is not a valid enum value
|
|
1651
|
+
"""
|
|
1652
|
+
def __int__(self) -> int: ...
|
|
1653
|
+
def __eq__(self, other: InputRestrictionMutator) -> bool: ...
|
|
1654
|
+
def __hash__(self) -> str: ...
|
|
1655
|
+
def __str__(self) -> str: ...
|
|
1656
|
+
def __repr__(self) -> str: ...
|
|
1657
|
+
|
|
1658
|
+
class JumpMutator:
|
|
1659
|
+
Default = JumpMutator(0)
|
|
1660
|
+
Grounded = JumpMutator(1)
|
|
1661
|
+
Two = JumpMutator(2)
|
|
1662
|
+
Three = JumpMutator(3)
|
|
1663
|
+
Four = JumpMutator(4)
|
|
1664
|
+
Unlimited = JumpMutator(5)
|
|
1665
|
+
NoJumps = JumpMutator(6)
|
|
1666
|
+
|
|
1667
|
+
def __new__(cls, value: int = 0): ...
|
|
1668
|
+
def __init__(self, value: int = 0):
|
|
1669
|
+
"""
|
|
1670
|
+
:raises ValueError: If the `value` is not a valid enum value
|
|
1671
|
+
"""
|
|
1672
|
+
def __int__(self) -> int: ...
|
|
1673
|
+
def __eq__(self, other: JumpMutator) -> bool: ...
|
|
1674
|
+
def __hash__(self) -> str: ...
|
|
1675
|
+
def __str__(self) -> str: ...
|
|
1676
|
+
def __repr__(self) -> str: ...
|
|
1677
|
+
|
|
1550
1678
|
class Launcher:
|
|
1551
1679
|
Steam = Launcher(0)
|
|
1552
1680
|
Epic = Launcher(1)
|
|
@@ -2071,12 +2199,21 @@ class MatchPhase:
|
|
|
2071
2199
|
def __repr__(self) -> str: ...
|
|
2072
2200
|
|
|
2073
2201
|
class MaxScoreMutator:
|
|
2074
|
-
|
|
2202
|
+
Unlimited = MaxScoreMutator(0)
|
|
2075
2203
|
OneGoal = MaxScoreMutator(1)
|
|
2076
2204
|
ThreeGoals = MaxScoreMutator(2)
|
|
2077
2205
|
FiveGoals = MaxScoreMutator(3)
|
|
2078
2206
|
SevenGoals = MaxScoreMutator(4)
|
|
2079
|
-
|
|
2207
|
+
TenGoals = MaxScoreMutator(5)
|
|
2208
|
+
TwentyGoals = MaxScoreMutator(6)
|
|
2209
|
+
ThirtyGoals = MaxScoreMutator(7)
|
|
2210
|
+
FortyGoals = MaxScoreMutator(8)
|
|
2211
|
+
FiftyGoals = MaxScoreMutator(9)
|
|
2212
|
+
SixtyGoals = MaxScoreMutator(10)
|
|
2213
|
+
SeventyGoals = MaxScoreMutator(11)
|
|
2214
|
+
EightyGoals = MaxScoreMutator(12)
|
|
2215
|
+
NinetyGoals = MaxScoreMutator(13)
|
|
2216
|
+
HundredGoals = MaxScoreMutator(14)
|
|
2080
2217
|
|
|
2081
2218
|
def __new__(cls, value: int = 0): ...
|
|
2082
2219
|
def __init__(self, value: int = 0):
|
|
@@ -2090,7 +2227,7 @@ class MaxScoreMutator:
|
|
|
2090
2227
|
def __repr__(self) -> str: ...
|
|
2091
2228
|
|
|
2092
2229
|
class MaxTimeMutator:
|
|
2093
|
-
|
|
2230
|
+
Unlimited = MaxTimeMutator(0)
|
|
2094
2231
|
ElevenMinutes = MaxTimeMutator(1)
|
|
2095
2232
|
|
|
2096
2233
|
def __new__(cls, value: int = 0): ...
|
|
@@ -2143,7 +2280,7 @@ class MutatorSettings:
|
|
|
2143
2280
|
"""
|
|
2144
2281
|
series_length: SeriesLengthMutator
|
|
2145
2282
|
"""
|
|
2146
|
-
The series length
|
|
2283
|
+
The series length.
|
|
2147
2284
|
"""
|
|
2148
2285
|
game_speed: GameSpeedMutator
|
|
2149
2286
|
"""
|
|
@@ -2206,6 +2343,50 @@ class MutatorSettings:
|
|
|
2206
2343
|
"""
|
|
2207
2344
|
Additional audio options for custom modes.
|
|
2208
2345
|
"""
|
|
2346
|
+
ball_gravity: BallGravityMutator
|
|
2347
|
+
"""
|
|
2348
|
+
Ball gravity.
|
|
2349
|
+
"""
|
|
2350
|
+
territory: TerritoryMutator
|
|
2351
|
+
"""
|
|
2352
|
+
Territory mutator.
|
|
2353
|
+
"""
|
|
2354
|
+
stale_ball: StaleBallMutator
|
|
2355
|
+
"""
|
|
2356
|
+
Stale ball mutator.
|
|
2357
|
+
"""
|
|
2358
|
+
jump: JumpMutator
|
|
2359
|
+
"""
|
|
2360
|
+
Jumps mutator.
|
|
2361
|
+
"""
|
|
2362
|
+
dodge_timer: DodgeTimerMutator
|
|
2363
|
+
"""
|
|
2364
|
+
Dodge timer mutator.
|
|
2365
|
+
"""
|
|
2366
|
+
possession_score: PossessionScoreMutator
|
|
2367
|
+
"""
|
|
2368
|
+
Possession score mutator.
|
|
2369
|
+
"""
|
|
2370
|
+
demolish_score: DemolishScoreMutator
|
|
2371
|
+
"""
|
|
2372
|
+
Demolish score mutator.
|
|
2373
|
+
"""
|
|
2374
|
+
normal_goal_score: NormalGoalScoreMutator
|
|
2375
|
+
"""
|
|
2376
|
+
Normal goal score mutator.
|
|
2377
|
+
"""
|
|
2378
|
+
aerial_goal_score: AerialGoalScoreMutator
|
|
2379
|
+
"""
|
|
2380
|
+
Aerial goal score mutator.
|
|
2381
|
+
"""
|
|
2382
|
+
assist_goal_score: AssistGoalScoreMutator
|
|
2383
|
+
"""
|
|
2384
|
+
Assist goal score mutator.
|
|
2385
|
+
"""
|
|
2386
|
+
input_restriction: InputRestrictionMutator
|
|
2387
|
+
"""
|
|
2388
|
+
Player input restriction mutator.
|
|
2389
|
+
"""
|
|
2209
2390
|
|
|
2210
2391
|
__match_args__ = (
|
|
2211
2392
|
"match_length",
|
|
@@ -2228,6 +2409,17 @@ class MutatorSettings:
|
|
|
2228
2409
|
"max_time",
|
|
2229
2410
|
"game_event",
|
|
2230
2411
|
"audio",
|
|
2412
|
+
"ball_gravity",
|
|
2413
|
+
"territory",
|
|
2414
|
+
"stale_ball",
|
|
2415
|
+
"jump",
|
|
2416
|
+
"dodge_timer",
|
|
2417
|
+
"possession_score",
|
|
2418
|
+
"demolish_score",
|
|
2419
|
+
"normal_goal_score",
|
|
2420
|
+
"aerial_goal_score",
|
|
2421
|
+
"assist_goal_score",
|
|
2422
|
+
"input_restriction",
|
|
2231
2423
|
)
|
|
2232
2424
|
|
|
2233
2425
|
def __new__(
|
|
@@ -2252,6 +2444,17 @@ class MutatorSettings:
|
|
|
2252
2444
|
max_time: MaxTimeMutator = MaxTimeMutator(),
|
|
2253
2445
|
game_event: GameEventMutator = GameEventMutator(),
|
|
2254
2446
|
audio: AudioMutator = AudioMutator(),
|
|
2447
|
+
ball_gravity: BallGravityMutator = BallGravityMutator(),
|
|
2448
|
+
territory: TerritoryMutator = TerritoryMutator(),
|
|
2449
|
+
stale_ball: StaleBallMutator = StaleBallMutator(),
|
|
2450
|
+
jump: JumpMutator = JumpMutator(),
|
|
2451
|
+
dodge_timer: DodgeTimerMutator = DodgeTimerMutator(),
|
|
2452
|
+
possession_score: PossessionScoreMutator = PossessionScoreMutator(),
|
|
2453
|
+
demolish_score: DemolishScoreMutator = DemolishScoreMutator(),
|
|
2454
|
+
normal_goal_score: NormalGoalScoreMutator = NormalGoalScoreMutator(),
|
|
2455
|
+
aerial_goal_score: AerialGoalScoreMutator = AerialGoalScoreMutator(),
|
|
2456
|
+
assist_goal_score: AssistGoalScoreMutator = AssistGoalScoreMutator(),
|
|
2457
|
+
input_restriction: InputRestrictionMutator = InputRestrictionMutator(),
|
|
2255
2458
|
): ...
|
|
2256
2459
|
def __init__(
|
|
2257
2460
|
self,
|
|
@@ -2275,6 +2478,17 @@ class MutatorSettings:
|
|
|
2275
2478
|
max_time: MaxTimeMutator = MaxTimeMutator(),
|
|
2276
2479
|
game_event: GameEventMutator = GameEventMutator(),
|
|
2277
2480
|
audio: AudioMutator = AudioMutator(),
|
|
2481
|
+
ball_gravity: BallGravityMutator = BallGravityMutator(),
|
|
2482
|
+
territory: TerritoryMutator = TerritoryMutator(),
|
|
2483
|
+
stale_ball: StaleBallMutator = StaleBallMutator(),
|
|
2484
|
+
jump: JumpMutator = JumpMutator(),
|
|
2485
|
+
dodge_timer: DodgeTimerMutator = DodgeTimerMutator(),
|
|
2486
|
+
possession_score: PossessionScoreMutator = PossessionScoreMutator(),
|
|
2487
|
+
demolish_score: DemolishScoreMutator = DemolishScoreMutator(),
|
|
2488
|
+
normal_goal_score: NormalGoalScoreMutator = NormalGoalScoreMutator(),
|
|
2489
|
+
aerial_goal_score: AerialGoalScoreMutator = AerialGoalScoreMutator(),
|
|
2490
|
+
assist_goal_score: AssistGoalScoreMutator = AssistGoalScoreMutator(),
|
|
2491
|
+
input_restriction: InputRestrictionMutator = InputRestrictionMutator(),
|
|
2278
2492
|
): ...
|
|
2279
2493
|
def pack(self) -> bytes:
|
|
2280
2494
|
"""
|
|
@@ -2296,6 +2510,25 @@ class MutatorSettings:
|
|
|
2296
2510
|
def __str__(self) -> str: ...
|
|
2297
2511
|
def __repr__(self) -> str: ...
|
|
2298
2512
|
|
|
2513
|
+
class NormalGoalScoreMutator:
|
|
2514
|
+
One = NormalGoalScoreMutator(0)
|
|
2515
|
+
Zero = NormalGoalScoreMutator(1)
|
|
2516
|
+
Two = NormalGoalScoreMutator(2)
|
|
2517
|
+
Three = NormalGoalScoreMutator(3)
|
|
2518
|
+
Five = NormalGoalScoreMutator(4)
|
|
2519
|
+
Ten = NormalGoalScoreMutator(5)
|
|
2520
|
+
|
|
2521
|
+
def __new__(cls, value: int = 0): ...
|
|
2522
|
+
def __init__(self, value: int = 0):
|
|
2523
|
+
"""
|
|
2524
|
+
:raises ValueError: If the `value` is not a valid enum value
|
|
2525
|
+
"""
|
|
2526
|
+
def __int__(self) -> int: ...
|
|
2527
|
+
def __eq__(self, other: NormalGoalScoreMutator) -> bool: ...
|
|
2528
|
+
def __hash__(self) -> str: ...
|
|
2529
|
+
def __str__(self) -> str: ...
|
|
2530
|
+
def __repr__(self) -> str: ...
|
|
2531
|
+
|
|
2299
2532
|
class OvertimeMutator:
|
|
2300
2533
|
Unlimited = OvertimeMutator(0)
|
|
2301
2534
|
FiveMaxFirstScore = OvertimeMutator(1)
|
|
@@ -2564,9 +2797,9 @@ class PlayerInfo:
|
|
|
2564
2797
|
"""
|
|
2565
2798
|
The team of the player.
|
|
2566
2799
|
"""
|
|
2567
|
-
boost:
|
|
2800
|
+
boost: float
|
|
2568
2801
|
"""
|
|
2569
|
-
The current boost.
|
|
2802
|
+
The current boost, from 0 to 100.
|
|
2570
2803
|
"""
|
|
2571
2804
|
spawn_id: int
|
|
2572
2805
|
"""
|
|
@@ -2654,7 +2887,7 @@ class PlayerInfo:
|
|
|
2654
2887
|
is_bot: bool = False,
|
|
2655
2888
|
name: str = "",
|
|
2656
2889
|
team: int = 0,
|
|
2657
|
-
boost:
|
|
2890
|
+
boost: float = 0,
|
|
2658
2891
|
spawn_id: int = 0,
|
|
2659
2892
|
accolades: Sequence[str] = [],
|
|
2660
2893
|
last_input: ControllerState = ControllerState(),
|
|
@@ -2678,7 +2911,7 @@ class PlayerInfo:
|
|
|
2678
2911
|
is_bot: bool = False,
|
|
2679
2912
|
name: str = "",
|
|
2680
2913
|
team: int = 0,
|
|
2681
|
-
boost:
|
|
2914
|
+
boost: float = 0,
|
|
2682
2915
|
spawn_id: int = 0,
|
|
2683
2916
|
accolades: Sequence[str] = [],
|
|
2684
2917
|
last_input: ControllerState = ControllerState(),
|
|
@@ -2900,6 +3133,23 @@ class PolyLine3D:
|
|
|
2900
3133
|
def __str__(self) -> str: ...
|
|
2901
3134
|
def __repr__(self) -> str: ...
|
|
2902
3135
|
|
|
3136
|
+
class PossessionScoreMutator:
|
|
3137
|
+
Off = PossessionScoreMutator(0)
|
|
3138
|
+
OneSecond = PossessionScoreMutator(1)
|
|
3139
|
+
TwoSeconds = PossessionScoreMutator(2)
|
|
3140
|
+
ThreeSeconds = PossessionScoreMutator(3)
|
|
3141
|
+
|
|
3142
|
+
def __new__(cls, value: int = 0): ...
|
|
3143
|
+
def __init__(self, value: int = 0):
|
|
3144
|
+
"""
|
|
3145
|
+
:raises ValueError: If the `value` is not a valid enum value
|
|
3146
|
+
"""
|
|
3147
|
+
def __int__(self) -> int: ...
|
|
3148
|
+
def __eq__(self, other: PossessionScoreMutator) -> bool: ...
|
|
3149
|
+
def __hash__(self) -> str: ...
|
|
3150
|
+
def __str__(self) -> str: ...
|
|
3151
|
+
def __repr__(self) -> str: ...
|
|
3152
|
+
|
|
2903
3153
|
class PredictionSlice:
|
|
2904
3154
|
game_seconds: float
|
|
2905
3155
|
"""
|
|
@@ -3022,9 +3272,13 @@ class Rect2D:
|
|
|
3022
3272
|
"""
|
|
3023
3273
|
Color of the rectangle.
|
|
3024
3274
|
"""
|
|
3025
|
-
|
|
3275
|
+
h_align: TextHAlign
|
|
3026
3276
|
"""
|
|
3027
|
-
|
|
3277
|
+
The horizontal alignment of the rectangle.
|
|
3278
|
+
"""
|
|
3279
|
+
v_align: TextVAlign
|
|
3280
|
+
"""
|
|
3281
|
+
The vertical alignment of the rectangle.
|
|
3028
3282
|
"""
|
|
3029
3283
|
|
|
3030
3284
|
__match_args__ = (
|
|
@@ -3033,7 +3287,8 @@ class Rect2D:
|
|
|
3033
3287
|
"width",
|
|
3034
3288
|
"height",
|
|
3035
3289
|
"color",
|
|
3036
|
-
"
|
|
3290
|
+
"h_align",
|
|
3291
|
+
"v_align",
|
|
3037
3292
|
)
|
|
3038
3293
|
|
|
3039
3294
|
def __new__(
|
|
@@ -3043,7 +3298,8 @@ class Rect2D:
|
|
|
3043
3298
|
width: float = 0,
|
|
3044
3299
|
height: float = 0,
|
|
3045
3300
|
color: Color = Color(),
|
|
3046
|
-
|
|
3301
|
+
h_align: TextHAlign = TextHAlign(),
|
|
3302
|
+
v_align: TextVAlign = TextVAlign(),
|
|
3047
3303
|
): ...
|
|
3048
3304
|
def __init__(
|
|
3049
3305
|
self,
|
|
@@ -3052,7 +3308,8 @@ class Rect2D:
|
|
|
3052
3308
|
width: float = 0,
|
|
3053
3309
|
height: float = 0,
|
|
3054
3310
|
color: Color = Color(),
|
|
3055
|
-
|
|
3311
|
+
h_align: TextHAlign = TextHAlign(),
|
|
3312
|
+
v_align: TextVAlign = TextVAlign(),
|
|
3056
3313
|
): ...
|
|
3057
3314
|
def pack(self) -> bytes:
|
|
3058
3315
|
"""
|
|
@@ -3095,12 +3352,22 @@ class Rect3D:
|
|
|
3095
3352
|
"""
|
|
3096
3353
|
The color of the rectangle.
|
|
3097
3354
|
"""
|
|
3355
|
+
h_align: TextHAlign
|
|
3356
|
+
"""
|
|
3357
|
+
The horizontal alignment of the anchor in the rectangle.
|
|
3358
|
+
"""
|
|
3359
|
+
v_align: TextVAlign
|
|
3360
|
+
"""
|
|
3361
|
+
The vertical alignment of the anchor in the rectangle.
|
|
3362
|
+
"""
|
|
3098
3363
|
|
|
3099
3364
|
__match_args__ = (
|
|
3100
3365
|
"anchor",
|
|
3101
3366
|
"width",
|
|
3102
3367
|
"height",
|
|
3103
3368
|
"color",
|
|
3369
|
+
"h_align",
|
|
3370
|
+
"v_align",
|
|
3104
3371
|
)
|
|
3105
3372
|
|
|
3106
3373
|
def __new__(
|
|
@@ -3109,6 +3376,8 @@ class Rect3D:
|
|
|
3109
3376
|
width: float = 0,
|
|
3110
3377
|
height: float = 0,
|
|
3111
3378
|
color: Color = Color(),
|
|
3379
|
+
h_align: TextHAlign = TextHAlign(),
|
|
3380
|
+
v_align: TextVAlign = TextVAlign(),
|
|
3112
3381
|
): ...
|
|
3113
3382
|
def __init__(
|
|
3114
3383
|
self,
|
|
@@ -3116,6 +3385,8 @@ class Rect3D:
|
|
|
3116
3385
|
width: float = 0,
|
|
3117
3386
|
height: float = 0,
|
|
3118
3387
|
color: Color = Color(),
|
|
3388
|
+
h_align: TextHAlign = TextHAlign(),
|
|
3389
|
+
v_align: TextVAlign = TextVAlign(),
|
|
3119
3390
|
): ...
|
|
3120
3391
|
def pack(self) -> bytes:
|
|
3121
3392
|
"""
|
|
@@ -3462,7 +3733,7 @@ class RotatorPartial:
|
|
|
3462
3733
|
def __repr__(self) -> str: ...
|
|
3463
3734
|
|
|
3464
3735
|
class RumbleMutator:
|
|
3465
|
-
|
|
3736
|
+
Off = RumbleMutator(0)
|
|
3466
3737
|
DefaultRumble = RumbleMutator(1)
|
|
3467
3738
|
Slow = RumbleMutator(2)
|
|
3468
3739
|
Civilized = RumbleMutator(3)
|
|
@@ -3473,6 +3744,8 @@ class RumbleMutator:
|
|
|
3473
3744
|
HauntedBallBeam = RumbleMutator(8)
|
|
3474
3745
|
Tactical = RumbleMutator(9)
|
|
3475
3746
|
BatmanRumble = RumbleMutator(10)
|
|
3747
|
+
GrapplingOnly = RumbleMutator(11)
|
|
3748
|
+
HaymakerOnly = RumbleMutator(12)
|
|
3476
3749
|
|
|
3477
3750
|
def __new__(cls, value: int = 0): ...
|
|
3478
3751
|
def __init__(self, value: int = 0):
|
|
@@ -3724,6 +3997,21 @@ class SphereShape:
|
|
|
3724
3997
|
def __str__(self) -> str: ...
|
|
3725
3998
|
def __repr__(self) -> str: ...
|
|
3726
3999
|
|
|
4000
|
+
class StaleBallMutator:
|
|
4001
|
+
Unlimited = StaleBallMutator(0)
|
|
4002
|
+
ThirtySeconds = StaleBallMutator(1)
|
|
4003
|
+
|
|
4004
|
+
def __new__(cls, value: int = 0): ...
|
|
4005
|
+
def __init__(self, value: int = 0):
|
|
4006
|
+
"""
|
|
4007
|
+
:raises ValueError: If the `value` is not a valid enum value
|
|
4008
|
+
"""
|
|
4009
|
+
def __int__(self) -> int: ...
|
|
4010
|
+
def __eq__(self, other: StaleBallMutator) -> bool: ...
|
|
4011
|
+
def __hash__(self) -> str: ...
|
|
4012
|
+
def __str__(self) -> str: ...
|
|
4013
|
+
def __repr__(self) -> str: ...
|
|
4014
|
+
|
|
3727
4015
|
class StartCommand:
|
|
3728
4016
|
"""
|
|
3729
4017
|
A client message to start a match using a path to a match config file.
|
|
@@ -4019,6 +4307,21 @@ class TeamInfo:
|
|
|
4019
4307
|
def __str__(self) -> str: ...
|
|
4020
4308
|
def __repr__(self) -> str: ...
|
|
4021
4309
|
|
|
4310
|
+
class TerritoryMutator:
|
|
4311
|
+
Off = TerritoryMutator(0)
|
|
4312
|
+
Territory = TerritoryMutator(1)
|
|
4313
|
+
|
|
4314
|
+
def __new__(cls, value: int = 0): ...
|
|
4315
|
+
def __init__(self, value: int = 0):
|
|
4316
|
+
"""
|
|
4317
|
+
:raises ValueError: If the `value` is not a valid enum value
|
|
4318
|
+
"""
|
|
4319
|
+
def __int__(self) -> int: ...
|
|
4320
|
+
def __eq__(self, other: TerritoryMutator) -> bool: ...
|
|
4321
|
+
def __hash__(self) -> str: ...
|
|
4322
|
+
def __str__(self) -> str: ...
|
|
4323
|
+
def __repr__(self) -> str: ...
|
|
4324
|
+
|
|
4022
4325
|
class TextHAlign:
|
|
4023
4326
|
Left = TextHAlign(0)
|
|
4024
4327
|
Center = TextHAlign(1)
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rlbot_flatbuffers
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.15.0
|
|
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-0.15.0.dist-info/METADATA,sha256=OamScSBiyiOE9jDqtiIf4ejgiYNFbtZdRO1d5HzXL9M,3912
|
|
2
|
+
rlbot_flatbuffers-0.15.0.dist-info/WHEEL,sha256=GbZa854Nd4wq8FJ_cHwge55xWx0Hgf1aqY1IVa8I2To,95
|
|
3
|
+
rlbot_flatbuffers-0.15.0.dist-info/licenses/LICENSE,sha256=hyTFOPxHzy3qK-7kU1pXAMJ9lq2oeyrrhmM22ZIGr2k,1091
|
|
4
|
+
rlbot_flatbuffers/__init__.py,sha256=F5P4NTZrdoi0sGDYYT6KtaLKKZUcSOR_hW0vFAaFmhk,151
|
|
5
|
+
rlbot_flatbuffers/__init__.pyi,sha256=EEoqs7ruPuIlbz94hZo1KFwMdYm3i_q47prkEnv0Ngo,125802
|
|
6
|
+
rlbot_flatbuffers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
rlbot_flatbuffers/rlbot_flatbuffers.pyd,sha256=fr7gyiYlbbI7lKufjYVt6Htb2IRky2abgEveFj63b1c,2060288
|
|
8
|
+
rlbot_flatbuffers-0.15.0.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
rlbot_flatbuffers-0.14.6.dist-info/METADATA,sha256=EJbWXbJY_XDcA3FJWF4hJdehljH9KlQinSeJWL3ZGl0,3912
|
|
2
|
-
rlbot_flatbuffers-0.14.6.dist-info/WHEEL,sha256=GbZa854Nd4wq8FJ_cHwge55xWx0Hgf1aqY1IVa8I2To,95
|
|
3
|
-
rlbot_flatbuffers-0.14.6.dist-info/licenses/LICENSE,sha256=hyTFOPxHzy3qK-7kU1pXAMJ9lq2oeyrrhmM22ZIGr2k,1091
|
|
4
|
-
rlbot_flatbuffers/__init__.py,sha256=F5P4NTZrdoi0sGDYYT6KtaLKKZUcSOR_hW0vFAaFmhk,151
|
|
5
|
-
rlbot_flatbuffers/__init__.pyi,sha256=Hn_jCvRP1jWZWilThfAnWX4Hja7GmS2DTzbPu8hLkys,115844
|
|
6
|
-
rlbot_flatbuffers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
rlbot_flatbuffers/rlbot_flatbuffers.pyd,sha256=zGxiRkKK_0g35NlTD_3vQxgT9lV6LcpPpN2U9rxn2fM,1884160
|
|
8
|
-
rlbot_flatbuffers-0.14.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|