I’ve been experimenting with the various ecs packages like physics and hybrid renderer and I’m noticing that they are full of secret systems which auto-run and do secret things. For example the renderer package automatically converts my renderers into something usable by the renderer system (V2) which in turn renders them. I’m not asked to opt-in. It just happens. Unfortunately, I can’t find a way to opt out either.
Normally when I use I new library I don’t understand it very well so I start by using a small subset of its functionality. For example I import a math library and use the linear interpolation only. But I don’t expect it to also use bicubic interpolation on the data and Furier transform the result. And I don’t want to learn how to stop it from doing those operations because they are unknown unknowns to me.
Is this how ECS libraries are supposed to work? You import a game library from the asset store and it automatically runs, shoots your enemies, pickups you pickups, does you laundry, mines a hundred bitcoins and rides into the sunset satisfied.