process method
void
process()
This is the only method that is supposed to be called from outside the library,
Implementation
void process() {
_frame = world._frame[_group]!;
_time = world._time[_group]!;
_delta = world.delta;
if (checkProcessing()) {
begin();
processEntities(_actives);
end();
}
}