rlbot-flatbuffers 0.15.0__tar.gz → 0.16.0__tar.gz
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-0.15.0 → rlbot_flatbuffers-0.16.0}/Cargo.lock +1 -1
- {rlbot_flatbuffers-0.15.0 → rlbot_flatbuffers-0.16.0}/Cargo.toml +1 -1
- {rlbot_flatbuffers-0.15.0 → rlbot_flatbuffers-0.16.0}/PKG-INFO +1 -1
- {rlbot_flatbuffers-0.15.0 → rlbot_flatbuffers-0.16.0}/flatbuffers-schema/matchconfig.fbs +6 -3
- {rlbot_flatbuffers-0.15.0 → rlbot_flatbuffers-0.16.0}/LICENSE +0 -0
- {rlbot_flatbuffers-0.15.0 → rlbot_flatbuffers-0.16.0}/README.md +0 -0
- {rlbot_flatbuffers-0.15.0 → rlbot_flatbuffers-0.16.0}/codegen/class_inject.rs +0 -0
- {rlbot_flatbuffers-0.15.0 → rlbot_flatbuffers-0.16.0}/codegen/enums.rs +0 -0
- {rlbot_flatbuffers-0.15.0 → rlbot_flatbuffers-0.16.0}/codegen/generator.rs +0 -0
- {rlbot_flatbuffers-0.15.0 → rlbot_flatbuffers-0.16.0}/codegen/main.rs +0 -0
- {rlbot_flatbuffers-0.15.0 → rlbot_flatbuffers-0.16.0}/codegen/pyi.rs +0 -0
- {rlbot_flatbuffers-0.15.0 → rlbot_flatbuffers-0.16.0}/codegen/structs.rs +0 -0
- {rlbot_flatbuffers-0.15.0 → rlbot_flatbuffers-0.16.0}/codegen/unions.rs +0 -0
- {rlbot_flatbuffers-0.15.0 → rlbot_flatbuffers-0.16.0}/flatbuffers-schema/FLATBUFFERS-LICENSE +0 -0
- {rlbot_flatbuffers-0.15.0 → rlbot_flatbuffers-0.16.0}/flatbuffers-schema/README.md +0 -0
- {rlbot_flatbuffers-0.15.0 → rlbot_flatbuffers-0.16.0}/flatbuffers-schema/comms.fbs +0 -0
- {rlbot_flatbuffers-0.15.0 → rlbot_flatbuffers-0.16.0}/flatbuffers-schema/flatc +0 -0
- {rlbot_flatbuffers-0.15.0 → rlbot_flatbuffers-0.16.0}/flatbuffers-schema/flatc.exe +0 -0
- {rlbot_flatbuffers-0.15.0 → rlbot_flatbuffers-0.16.0}/flatbuffers-schema/gamedata.fbs +0 -0
- {rlbot_flatbuffers-0.15.0 → rlbot_flatbuffers-0.16.0}/flatbuffers-schema/gamestatemanip.fbs +0 -0
- {rlbot_flatbuffers-0.15.0 → rlbot_flatbuffers-0.16.0}/flatbuffers-schema/rendering.fbs +0 -0
- {rlbot_flatbuffers-0.15.0 → rlbot_flatbuffers-0.16.0}/flatbuffers-schema/rlbot.fbs +0 -0
- {rlbot_flatbuffers-0.15.0 → rlbot_flatbuffers-0.16.0}/pyproject.toml +0 -0
- {rlbot_flatbuffers-0.15.0 → rlbot_flatbuffers-0.16.0}/src/lib.rs +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "rlbot_flatbuffers"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.16.0"
|
|
4
4
|
edition = "2024"
|
|
5
5
|
description = "A Python module implemented in Rust for serializing and deserializing RLBot's flatbuffers"
|
|
6
6
|
repository = "https://github.com/VirxEC/rlbot_flatbuffers_py"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rlbot_flatbuffers
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.16.0
|
|
4
4
|
Classifier: Programming Language :: Rust
|
|
5
5
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
6
6
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
@@ -497,8 +497,11 @@ table MatchConfiguration {
|
|
|
497
497
|
/// Additional configuration for the launching method.
|
|
498
498
|
/// See launcher.
|
|
499
499
|
launcher_arg:string (required);
|
|
500
|
-
/// If true, RLBot will start the bots
|
|
501
|
-
|
|
500
|
+
/// If true, RLBot will start the bots and scripts that has a non-empty run command in their player/script configuration.
|
|
501
|
+
auto_start_agents:bool=true;
|
|
502
|
+
/// If true, RLBot will start the match only once all bots and script have connected and are ready.
|
|
503
|
+
/// If false, the match will start as soon as the map loads.
|
|
504
|
+
wait_for_agents:bool=true;
|
|
502
505
|
/// The name of a upk file, like UtopiaStadium_P, which should be loaded.
|
|
503
506
|
/// On Steam version of Rocket League this can be used to load custom map files,
|
|
504
507
|
/// but on Epic version it only works on the Psyonix maps.
|
|
@@ -523,7 +526,7 @@ table MatchConfiguration {
|
|
|
523
526
|
/// Whether debug rendering is displayed.
|
|
524
527
|
enable_rendering:bool;
|
|
525
528
|
/// Whether clients are allowed to manipulate the game state, e.g. teleporting cars and ball.
|
|
526
|
-
enable_state_setting:bool;
|
|
529
|
+
enable_state_setting:bool=true;
|
|
527
530
|
/// Whether the match replay should be saved.
|
|
528
531
|
auto_save_replay:bool;
|
|
529
532
|
/// If set to true, a free play match is launched instead of an exhibition match.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rlbot_flatbuffers-0.15.0 → rlbot_flatbuffers-0.16.0}/flatbuffers-schema/FLATBUFFERS-LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|