Skip to content

Commit

Permalink
Port transforms example to Bevy 0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
johanhelsing committed Jul 13, 2023
1 parent 4a9b387 commit 36f7f94
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions examples/transforms.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,8 @@ fn main() {
// which is more efficient than MSAA, and also works on Linux, wayland
.insert_resource(Msaa::Off)
.insert_resource(ClearColor(Color::rgb(0.7, 0.8, 0.7)))
.add_plugins(DefaultPlugins)
.add_plugin(SmudPlugin)
.add_plugin(PanCamPlugin)
.add_startup_system(setup)
.add_plugins((DefaultPlugins, SmudPlugin, PanCamPlugin))
.add_systems(Startup, setup)
.run();
}

Expand Down

0 comments on commit 36f7f94

Please sign in to comment.