[0.10.3] blue area disappear
- SuperSandro2000
- Filter Inserter
- Posts: 742
- Joined: Sun Jan 12, 2014 3:54 am
- Contact:
[0.10.3] blue area disappear
The blue area from the Subsation disappear when it moves out of the screen. Also sometimes the wires visual diappear.
Please call me simply Sandro.
My Main Mods: Sandro's fixes, Expanded Rocket Payloads Touched by an AngelBob and more can be found here

My Main Mods: Sandro's fixes, Expanded Rocket Payloads Touched by an AngelBob and more can be found here

Re: [0.10.3] blue area disappear
This is a known limitation of the engine. I don't consider it a bug and it is not something we intend to fix (at least not soon).
For the curious: When the screen is drawn we need to collect all the entities that will be drawn. The more entities there are the lower the performance is. If we collect all the entities in the world we get the perfect drawing. But that would be insanely slow. So we collect entities only from the visible area + small window around (to deal with special cases like wire drawing between poles that are both outside of the screen). Lights are handled separately (there is a larger radius for the collection outside of visible area). Anyway if the entity is outside of this rectangle it will not be drawn even though it might need to be (its visualization falls in the screen or so).
For the curious: When the screen is drawn we need to collect all the entities that will be drawn. The more entities there are the lower the performance is. If we collect all the entities in the world we get the perfect drawing. But that would be insanely slow. So we collect entities only from the visible area + small window around (to deal with special cases like wire drawing between poles that are both outside of the screen). Lights are handled separately (there is a larger radius for the collection outside of visible area). Anyway if the entity is outside of this rectangle it will not be drawn even though it might need to be (its visualization falls in the screen or so).