Skip to content

Commit

Permalink
fix(Blenvy:Bevy): Fix Blenvy not respecting visibility hierarchies (#203
Browse files Browse the repository at this point in the history
)
  • Loading branch information
janhohenheim authored Jul 28, 2024
1 parent 17b31da commit aff11cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/blenvy/src/blueprints/spawn_from_blueprints.rs
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,7 @@ pub(crate) fn blueprints_finalize_instances(
}

if hide_until_ready.is_some() {
commands.entity(entity).insert(Visibility::Visible);
commands.entity(entity).insert(Visibility::Inherited);
}

blueprint_events.send(BlueprintEvent::InstanceReady {
Expand Down

0 comments on commit aff11cc

Please sign in to comment.