-
Hi I'm new to bevy. While running https://bevyengine.org/examples-webgpu/2d-rendering/pixel-grid-snap/ locally, It only has 80 fps. By comparing performance, I found that they seem to be a little different here is my cargo.toml. And my start command is Is there any way to improve performance during development?
|
Beta Was this translation helpful? Give feedback.
Answered by
cqh963852
Sep 26, 2024
Replies: 1 comment
-
after add a cargo run |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
cqh963852
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
after add a
--release
tag, and remove--features bevy/dynamic_linking
. the performance is normalcargo run
--release
--target wasm32-unknown-unknown --example camera