You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
721 B
Markdown
14 lines
721 B
Markdown
# GLTF Inspector
|
|
|
|
## Staging area
|
|
|
|
I want to have parallel "world" for each of my scenes so they're all in the same location in space, but not overlapping in the viewport.
|
|
|
|
For example, we load scene A and B and we want to show independent previews of A and B.
|
|
The way this tends to be done is by moving the staged assets "out of the way" to some far off part of the world that the player can't see.
|
|
This works, but makes the game world grounded in reality more than it has to be.
|
|
In principle (these are just 1s and 0s) we can spawn these all in their own worlds and toggle between worlds in the "multiverse".
|
|
|
|
There is [at least one] RFC for Bevy to support a "Universe" with multiple worlds, but nothing implemented.
|
|
|