bevyengine / bevyengine/bevy

(exit code: 0xc0000005, STATUS_ACCESS_VIOLATION)

Open
#9,265 13 comments 0 reactions 0 assignees View on GitHub
A-Rendering A-Windowing C-Bug O-Windows S-Needs-Investigation
Dominant language
Rust
Stars
48.2k
Forks
4.8k
Avg merge
3d 22h
Merged PRs (30d)
161

Description

## Bevy version

0.11.0

## \[Optional\] Relevant system information

If you cannot get Bevy to build or run on your machine, please include:

- the Rust version: cargo 1.71.0 (cfd3bbd8f 2023-06-08)
- the operating system: Windows 10 x64 19045.3208

```
`AdapterInfo { name: "Intel(R) HD Graphics 620", vendor: 32902, device: 22806, device_type: IntegratedGpu, driver: "?", driver_info: "?", backend: Vulkan }`
`SystemInfo { os: "Windows 10 Home", kernel: "19045", cpu: "Intel(R) Core(TM) i3-7130U CPU @ 2.70GHz", core_count: "2", memory: "7.9 GiB" }`
```

## What you did

```rust
use bevy::prelude::*;

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

fn setup_camera(mut commands: Commands) {
commands.spawn(Camera2dBundle::default());
}
```

## What went wrong

Running `cargo run` resulted in:

``error: process didn't exit successfully: `target\debug\model-train-software.exe` (exit code: 0xc0000005, STATUS_ACCESS_VIOLATION)``

## Additional information

It works without the camera.

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.