Skip to content

Commit

Permalink
Update README.md (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nilirad authored Oct 29, 2024
1 parent 412053b commit 5151ec6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ use bevy_prototype_lyon::prelude::*;

fn main() {
App::new()
.insert_resource(Msaa::Sample4)
.add_plugins((DefaultPlugins, ShapePlugin))
.add_systems(Startup, setup_system)
.run();
Expand All @@ -45,7 +44,7 @@ fn setup_system(mut commands: Commands) {
..shapes::RegularPolygon::default()
};

commands.spawn(Camera2dBundle::default());
commands.spawn((Camera2d, Msaa::Sample4));
commands.spawn((
ShapeBundle {
path: GeometryBuilder::build_as(&shape),
Expand All @@ -67,6 +66,7 @@ The following table shows the latest version of `bevy_prototype_lyon` that suppo

|bevy|bevy_prototype_lyon|license|
|---|---|---|
|0.15|0.13|MIT/Apache 2.0|
|0.14|0.12|MIT/Apache 2.0|
|0.13|0.11|MIT/Apache 2.0|
|0.12|0.10|MIT/Apache 2.0|
Expand Down

0 comments on commit 5151ec6

Please sign in to comment.