#Nothing is rendering in the window

17 messages · Page 1 of 1 (latest)

steady dawn
#

I setup Bevy through the Bevy Book so I don't believe it is the way I set it up. I am using a tutorial for 0.11 which seems like it shouldn't break it.

#

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
red sorrel
#

add a light?

steady dawn
#

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

bitter creek
#
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

steady dawn
#

still renders blank. Ill go back over the installation later, maybe I missed a step. thanks for the help.

hoary pond
#

@steady dawn Can your computer run one of the Bevy examples?

steady dawn
#

No it doesn't

hoary pond
#

including the 2d examples?

#

You might want to open an issue on Github if you have an account then

steady dawn
#

yes the 2d examples don't work either

strange scroll
#

What is the log output?