Skip to content

Commit a79a127

Browse files
authored
fix(Blenvy-Bevy): Fix blueprint example issue #247 (#248)
* fixes #247
1 parent ccd038c commit a79a127

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/blueprints/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ fn main() {
2525
fn setup_game(mut commands: Commands) {
2626
// here we spawn our game world/level, which is also a blueprint !
2727
commands.spawn((
28-
BlueprintInfo::from_path("levels/World.glb"), // all we need is a Blueprint info...
28+
BlueprintInfo::from_path("levels/Level1.glb"), // all we need is a Blueprint info...
2929
SpawnBlueprint, // and spawnblueprint to tell blenvy to spawn the blueprint now
3030
HideUntilReady, // only reveal the level once it is ready
3131
GameWorldTag,

0 commit comments

Comments
 (0)