removeInvisibleEntities method
Removes invisible Entity's mainly entities that scrolled past the viewport
from the visibileEntities
Map.
Implementation
void removeInvisibleEntities() async {
this.getVisibleEntities().forEach((id, e) {
if (this.viewHeight < e.y) {
this.visibleEntities.remove(id);
}
});
}