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 ccd038c commit a79a127Copy full SHA for a79a127
examples/blueprints/src/main.rs
@@ -25,7 +25,7 @@ fn main() {
25
fn setup_game(mut commands: Commands) {
26
// here we spawn our game world/level, which is also a blueprint !
27
commands.spawn((
28
- BlueprintInfo::from_path("levels/World.glb"), // all we need is a Blueprint info...
+ BlueprintInfo::from_path("levels/Level1.glb"), // all we need is a Blueprint info...
29
SpawnBlueprint, // and spawnblueprint to tell blenvy to spawn the blueprint now
30
HideUntilReady, // only reveal the level once it is ready
31
GameWorldTag,
0 commit comments