Scene mangement with builtin pipeline #1323
Unanswered
mathisloge
asked this question in
Q&A
Replies: 1 comment
-
|
Try adding this to the query: .without(flecs::DependsOn, flecs::OnStart).self().up(flecs::DependsOn)That should prevent |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I'm quite new to flecs.
I was wondering on how to combine the builtin pipeline with the scene_management example from here: https://github.com/SanderMertens/flecs/blob/master/examples/cpp/game_mechanics/scene_management/src/main.cpp
What I've tried is to use the given query from the documentation and add a
.without<MenuScene>resulting inHowever, now the systems tagged with
OnStartare running constantly.Is there an easy way to use the builtin pipeline for each scene but with the
.without<Scene>()tag?Beta Was this translation helpful? Give feedback.
All reactions