-
According to bevy/crates/bevy_app/src/app.rs Lines 145 to 148 in a6f6a8f It and its sub apps use mutable reference of World that can't be used simultaneously in neither single or multi thread.But, Bevy offically says that can happen after Extract Stage. What magic used inner? |
Beta Was this translation helpful? Give feedback.
Answered by
younggam
Nov 2, 2022
Replies: 1 comment 2 replies
-
I tried to examine this own by "trace-chrome" feature As you can see, it is clear that render subapp is highly tied with main app unlike introduced below. https://bevyengine.org/news/bevy-0-6/#pipelined-rendering-extract-prepare-queue-render I guess this news is outdated since higher version of bevy changed render polices |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
younggam
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I tried to examine this own by "trace-chrome" feature
and here is the result
As you can see, it is clear that render subapp is highly tied with main app unlike introduced below.
https://bevyengine.org/news/bevy-0-6/#pipelined-rendering-extract-prepare-queue-render
I guess this news is outdated since higher version of bevy changed render polices