#Nothing is rendering in the window
17 messages · Page 1 of 1 (latest)
cargo.toml file
[package]
name = "bevytest"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = "0.12.0"
# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3
add a light?
That doesn't work because i copied the source code from the tutorial where he adds a light and still nothing renders
so I went back to my code that doesn't have a light
Transform::from_xyz(0.0, 0.0, 0.0)
your camera is at the origin
you're looking at Vec3::ZERO but are also at 0 0 0
try moving away to something like 5 5 5
still renders blank. Ill go back over the installation later, maybe I missed a step. thanks for the help.
@steady dawn Can your computer run one of the Bevy examples?
No it doesn't
including the 2d examples?
You might want to open an issue on Github if you have an account then
yes the 2d examples don't work either
will do
What is the log output?