bevy/crates
Klim Tsoutsman 0c91317102 Change definition of ScheduleRunnerPlugin (#2606)
# Objective

- Allow `ScheduleRunnerPlugin` to be instantiated without curly braces. Other plugins in the library already use the semicolon syntax.
- Currently, you have to do the following:
```rust
App::build()
    .add_plugin(bevy::core::CorePlugin)
    .add_plugin(bevy::app::ScheduleRunnerPlugin {})
```
- With the proposed change you can do this:
```rust
App::build()
    .add_plugin(bevy::core::CorePlugin)
    .add_plugin(bevy::app::ScheduleRunnerPlugin)
```

## Solution

- Change the `ScheduleRunnerPlugin` definition to use a semicolon instead of curly braces.
2021-08-10 02:48:40 +00:00
..
bevy_app Change definition of ScheduleRunnerPlugin (#2606) 2021-08-10 02:48:40 +00:00
bevy_asset Bump notify to 5.0.0-pre.11 (#2564) 2021-07-29 23:56:16 +00:00
bevy_audio Fix some nightly clippy lints (#2522) 2021-07-29 20:52:15 +00:00
bevy_core Fix some nightly clippy lints (#2522) 2021-07-29 20:52:15 +00:00
bevy_derive Relicense Bevy under the dual MIT or Apache-2.0 license (#2509) 2021-07-23 21:11:51 +00:00
bevy_diagnostic Down with the system! (#2496) 2021-07-27 23:42:36 +00:00
bevy_dylib Relicense Bevy under the dual MIT or Apache-2.0 license (#2509) 2021-07-23 21:11:51 +00:00
bevy_dynamic_plugin Merge AppBuilder into App (#2531) 2021-07-27 20:21:06 +00:00
bevy_ecs Remove with bundle filter (#2623) 2021-08-10 01:55:52 +00:00
bevy_gilrs Merge AppBuilder into App (#2531) 2021-07-27 20:21:06 +00:00
bevy_gltf Fix some nightly clippy lints (#2522) 2021-07-29 20:52:15 +00:00
bevy_input Down with the system! (#2496) 2021-07-27 23:42:36 +00:00
bevy_internal Relicense Bevy under the dual MIT or Apache-2.0 license (#2509) 2021-07-23 21:11:51 +00:00
bevy_log Merge AppBuilder into App (#2531) 2021-07-27 20:21:06 +00:00
bevy_macro_utils Relicense Bevy under the dual MIT or Apache-2.0 license (#2509) 2021-07-23 21:11:51 +00:00
bevy_math Relicense Bevy under the dual MIT or Apache-2.0 license (#2509) 2021-07-23 21:11:51 +00:00
bevy_pbr Fix some nightly clippy lints (#2522) 2021-07-29 20:52:15 +00:00
bevy_reflect Fix some nightly clippy lints (#2522) 2021-07-29 20:52:15 +00:00
bevy_render Fix some nightly clippy lints (#2522) 2021-07-29 20:52:15 +00:00
bevy_scene Fix some nightly clippy lints (#2522) 2021-07-29 20:52:15 +00:00
bevy_sprite Down with the system! (#2496) 2021-07-27 23:42:36 +00:00
bevy_tasks Relicense Bevy under the dual MIT or Apache-2.0 license (#2509) 2021-07-23 21:11:51 +00:00
bevy_text Down with the system! (#2496) 2021-07-27 23:42:36 +00:00
bevy_transform Update EntityMut's location in push_children() and insert_children() (#2604) 2021-08-10 01:12:42 +00:00
bevy_ui Fix some nightly clippy lints (#2522) 2021-07-29 20:52:15 +00:00
bevy_utils Relicense Bevy under the dual MIT or Apache-2.0 license (#2509) 2021-07-23 21:11:51 +00:00
bevy_wgpu Fix some nightly clippy lints (#2522) 2021-07-29 20:52:15 +00:00
bevy_window Down with the system! (#2496) 2021-07-27 23:42:36 +00:00
bevy_winit Fix some nightly clippy lints (#2522) 2021-07-29 20:52:15 +00:00