We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9474248 commit cd28a9eCopy full SHA for cd28a9e
crates/bevy_editor/src/lib.rs
@@ -99,11 +99,13 @@ fn dummy_setup(
99
commands.spawn((
100
Mesh2d(meshes.add(Circle::new(50.0))),
101
MeshMaterial2d(materials_2d.add(Color::WHITE)),
102
+ Name::new("Circle"),
103
));
104
105
106
Mesh3d(meshes.add(Plane3d::new(Vec3::Y, Vec2::splat(1.5)))),
107
MeshMaterial3d(materials_3d.add(Color::WHITE)),
108
+ Name::new("Plane"),
109
110
111
@@ -112,5 +114,6 @@ fn dummy_setup(
112
114
..default()
113
115
},
116
Transform::default().looking_to(Vec3::NEG_ONE, Vec3::Y),
117
+ Name::new("DirectionalLight"),
118
119
}
0 commit comments