Great video! If you're worried about execution times, you could implement your own command queue system that runs separately from Bevy's.
@nomadshiba Жыл бұрын
you should also make 100 or 200 second videos showcasing random features of bevy. like first show an isolated real world problem, then show the bevy feature solving it.
@alexkazimir38355 ай бұрын
Great channel 🎉
@RSchenal Жыл бұрын
great video, very useful! I finally started my new project and will use this, thanks!
@tadeohepperle7514 Жыл бұрын
This is exactly what I was looking for!
@nicwhites Жыл бұрын
Great content dude! Keep it going!
@natew4724 Жыл бұрын
why can't a system simply request mutable World access, and bevy ECS will figure out the parallelism? And could you add multiple systems and (a, b, c).chain() to run in specific order technically, or schedules.
@logicprojects Жыл бұрын
You can get mutable world access in a system but then it will run exclusively. The issue is the borrow checker, there's no way for bevy to know what you will do with mutable access to everything so you might have 2 parallel systems changing the same piece of data which is forbidden.
@carlosverdes4 ай бұрын
Another approach is to create macros, they will remove the boilerplate and keep all the benefits like parallel processing
@38rtm Жыл бұрын
Have you try to add a impl trait on Commands? You could add a custom function via trait "spawn_cube“. And call commands.spawn_cube(... But you need to do some lifecycle, in other hand the performance is better I think.
@logicprojects Жыл бұрын
I haven't tried that myself so I'm not sure where the differences would be. It shouldn't have better perf because you still need them to run exclusively but the ergonomics might be different
@jeffg4686 Жыл бұрын
I Command thee to add VR / AR and AI capabilities to Bevy. This message was created using AI.