rlbot-flatbuffers 0.17.0__cp310-abi3-win_amd64.whl → 0.17.1__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 +29 -0
- rlbot_flatbuffers/rlbot_flatbuffers.pyd +0 -0
- {rlbot_flatbuffers-0.17.0.dist-info → rlbot_flatbuffers-0.17.1.dist-info}/METADATA +1 -1
- rlbot_flatbuffers-0.17.1.dist-info/RECORD +8 -0
- {rlbot_flatbuffers-0.17.0.dist-info → rlbot_flatbuffers-0.17.1.dist-info}/WHEEL +1 -1
- rlbot_flatbuffers-0.17.0.dist-info/RECORD +0 -8
- {rlbot_flatbuffers-0.17.0.dist-info → rlbot_flatbuffers-0.17.1.dist-info}/licenses/LICENSE +0 -0
rlbot_flatbuffers/__init__.pyi
CHANGED
|
@@ -304,6 +304,8 @@ class BallTypeMutator:
|
|
|
304
304
|
PlayerSeeking = BallTypeMutator(10)
|
|
305
305
|
Dropshot = BallTypeMutator(11)
|
|
306
306
|
ScoreAbsorb = BallTypeMutator(12)
|
|
307
|
+
Shoe = BallTypeMutator(13)
|
|
308
|
+
PizzaPuck = BallTypeMutator(14)
|
|
307
309
|
|
|
308
310
|
def __new__(cls, value: int = 0): ...
|
|
309
311
|
def __init__(self, value: int = 0):
|
|
@@ -324,6 +326,7 @@ class BallWeightMutator:
|
|
|
324
326
|
CurveBall = BallWeightMutator(4)
|
|
325
327
|
BeachBallCurve = BallWeightMutator(5)
|
|
326
328
|
MagnusFutBall = BallWeightMutator(6)
|
|
329
|
+
MagnusFutballLess = BallWeightMutator(7)
|
|
327
330
|
|
|
328
331
|
def __new__(cls, value: int = 0): ...
|
|
329
332
|
def __init__(self, value: int = 0):
|
|
@@ -1052,6 +1055,8 @@ class DemolishMutator:
|
|
|
1052
1055
|
OnContactFF = DemolishMutator(4)
|
|
1053
1056
|
OnBallContact = DemolishMutator(5)
|
|
1054
1057
|
OnBallContactFF = DemolishMutator(6)
|
|
1058
|
+
OnBallContactSilent = DemolishMutator(7)
|
|
1059
|
+
OnBallContactFFSilent = DemolishMutator(8)
|
|
1055
1060
|
|
|
1056
1061
|
def __new__(cls, value: int = 0): ...
|
|
1057
1062
|
def __init__(self, value: int = 0):
|
|
@@ -2450,6 +2455,10 @@ class MutatorSettings:
|
|
|
2450
2455
|
"""
|
|
2451
2456
|
Player input restriction mutator.
|
|
2452
2457
|
"""
|
|
2458
|
+
scoring_rule: ScoringRule
|
|
2459
|
+
"""
|
|
2460
|
+
Additional rules that apply to scoring goals
|
|
2461
|
+
"""
|
|
2453
2462
|
|
|
2454
2463
|
__match_args__ = (
|
|
2455
2464
|
"match_length",
|
|
@@ -2483,6 +2492,7 @@ class MutatorSettings:
|
|
|
2483
2492
|
"aerial_goal_score",
|
|
2484
2493
|
"assist_goal_score",
|
|
2485
2494
|
"input_restriction",
|
|
2495
|
+
"scoring_rule",
|
|
2486
2496
|
)
|
|
2487
2497
|
|
|
2488
2498
|
def __new__(
|
|
@@ -2518,6 +2528,7 @@ class MutatorSettings:
|
|
|
2518
2528
|
aerial_goal_score: AerialGoalScoreMutator = AerialGoalScoreMutator(),
|
|
2519
2529
|
assist_goal_score: AssistGoalScoreMutator = AssistGoalScoreMutator(),
|
|
2520
2530
|
input_restriction: InputRestrictionMutator = InputRestrictionMutator(),
|
|
2531
|
+
scoring_rule: ScoringRule = ScoringRule(),
|
|
2521
2532
|
): ...
|
|
2522
2533
|
def __init__(
|
|
2523
2534
|
self,
|
|
@@ -2552,6 +2563,7 @@ class MutatorSettings:
|
|
|
2552
2563
|
aerial_goal_score: AerialGoalScoreMutator = AerialGoalScoreMutator(),
|
|
2553
2564
|
assist_goal_score: AssistGoalScoreMutator = AssistGoalScoreMutator(),
|
|
2554
2565
|
input_restriction: InputRestrictionMutator = InputRestrictionMutator(),
|
|
2566
|
+
scoring_rule: ScoringRule = ScoringRule(),
|
|
2555
2567
|
): ...
|
|
2556
2568
|
def pack(self) -> bytes:
|
|
2557
2569
|
"""
|
|
@@ -3700,6 +3712,8 @@ class RumbleMutator:
|
|
|
3700
3712
|
BatmanRumble = RumbleMutator(10)
|
|
3701
3713
|
GrapplingOnly = RumbleMutator(11)
|
|
3702
3714
|
HaymakerOnly = RumbleMutator(12)
|
|
3715
|
+
SpikeRushForce = RumbleMutator(13)
|
|
3716
|
+
RPS = RumbleMutator(14)
|
|
3703
3717
|
|
|
3704
3718
|
def __new__(cls, value: int = 0): ...
|
|
3705
3719
|
def __init__(self, value: int = 0):
|
|
@@ -3765,6 +3779,21 @@ class ScoreInfo:
|
|
|
3765
3779
|
def __str__(self) -> str: ...
|
|
3766
3780
|
def __repr__(self) -> str: ...
|
|
3767
3781
|
|
|
3782
|
+
class ScoringRule:
|
|
3783
|
+
Default = ScoringRule(0)
|
|
3784
|
+
DisableGoalScoring = ScoringRule(1)
|
|
3785
|
+
|
|
3786
|
+
def __new__(cls, value: int = 0): ...
|
|
3787
|
+
def __init__(self, value: int = 0):
|
|
3788
|
+
"""
|
|
3789
|
+
:raises ValueError: If the `value` is not a valid enum value
|
|
3790
|
+
"""
|
|
3791
|
+
def __int__(self) -> int: ...
|
|
3792
|
+
def __eq__(self, other: ScoringRule) -> bool: ...
|
|
3793
|
+
def __hash__(self) -> str: ...
|
|
3794
|
+
def __str__(self) -> str: ...
|
|
3795
|
+
def __repr__(self) -> str: ...
|
|
3796
|
+
|
|
3768
3797
|
class ScriptConfiguration:
|
|
3769
3798
|
"""
|
|
3770
3799
|
A ScriptConfiguration defines a script of a match.
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rlbot_flatbuffers
|
|
3
|
-
Version: 0.17.
|
|
3
|
+
Version: 0.17.1
|
|
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.17.1.dist-info/METADATA,sha256=pchxZt75kGpdYKSV6r2unc8ifgrn8ATLok2Bkq_7mKQ,3909
|
|
2
|
+
rlbot_flatbuffers-0.17.1.dist-info/WHEEL,sha256=SeMW7HmVgqDlHov6XTzyxjk3jYj99dJr0Shj6PW8Wl0,95
|
|
3
|
+
rlbot_flatbuffers-0.17.1.dist-info/licenses/LICENSE,sha256=hyTFOPxHzy3qK-7kU1pXAMJ9lq2oeyrrhmM22ZIGr2k,1091
|
|
4
|
+
rlbot_flatbuffers/__init__.py,sha256=F5P4NTZrdoi0sGDYYT6KtaLKKZUcSOR_hW0vFAaFmhk,151
|
|
5
|
+
rlbot_flatbuffers/__init__.pyi,sha256=AGbIAKPiIBdDruU3Ol-_Pc8o3MbkZ1_3N5At-UEx0dM,122752
|
|
6
|
+
rlbot_flatbuffers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
rlbot_flatbuffers/rlbot_flatbuffers.pyd,sha256=ZrBthUggXEepeD3Gks3etiOcNa8JSjibrAlRDa14k8g,1967616
|
|
8
|
+
rlbot_flatbuffers-0.17.1.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
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,,
|
|
File without changes
|