Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bevy crashes when I spawn a Camera2dBundle #8176

Closed
ameknite opened this issue Mar 23, 2023 · 1 comment
Closed

Bevy crashes when I spawn a Camera2dBundle #8176

ameknite opened this issue Mar 23, 2023 · 1 comment
Labels
C-Bug An unexpected or incorrect behavior O-MacOS Specific to the MacOS (Apple) desktop operating system P-Crash A sudden unexpected crash

Comments

@ameknite
Copy link
Contributor

Bevy version

main 4f16d6e

Relevant system information

cargo 1.68.0 (115f34552 2023-02-26)

SystemInfo { os: "MacOS 13.2.1 ", kernel: "22.3.0", cpu: "Apple M1", core_count: "8", memory: "8.0 GiB" }

What you did

I tried to spawn a Camera2dBundle.

use bevy::prelude::*;

fn main() {
    App::new()
        .add_plugins(DefaultPlugins)
        .add_systems(Startup, setup)
        .run();
}

fn setup(mut commands: Commands) {
    commands.spawn(Camera3dBundle::default());
}

What went wrong

The app crashes.

Additional information

  • Works fine in 0.10
  • Works fine when I spawn a Camera3DBundle
@ameknite ameknite added C-Bug An unexpected or incorrect behavior S-Needs-Triage This issue needs to be labelled labels Mar 23, 2023
@rparrett
Copy link
Contributor

I believe this is a duplicate of #8144

@rparrett rparrett added P-Crash A sudden unexpected crash O-MacOS Specific to the MacOS (Apple) desktop operating system and removed S-Needs-Triage This issue needs to be labelled labels Mar 23, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C-Bug An unexpected or incorrect behavior O-MacOS Specific to the MacOS (Apple) desktop operating system P-Crash A sudden unexpected crash
Projects
None yet
Development

No branches or pull requests

2 participants