#use bevy ECS schedule
7 messages · Page 1 of 1 (latest)
did you checkout https://github.com/smokku/bevy_miniquad ?
It doesn't help. I want to use bevy_ecs in a macroquad app, not the opposite. The problem is that I don't know how to keep a system bound to the main thread, while let the other system to be executed using parallel Scheduler
now I solved it using two scheduler, one for the update (parallel) and one for the draw task (single threaded) but I wonder how can I do it using a single scheduler
Ah, gotcha
I don't think you can/should do that with single schedule. Bevy itself has multiple schedules inside