Widescreen-friendly Space Age


Adjusts drag force on space platforms based on the average of width and height (rather than just width). This makes the top speed of space platforms with full thrusters depend on the width-to-height ratio instead of maintaining a nearly constant ~500 km/s.

Tweaks
7 hours ago
2.0
0
Factorio: Space Age Icon Space Age Mod
Transportation Logistics Logistic network
Owner:
nullptr0x0
Source:
N/A
Homepage:
N/A
License:
MIT
Created:
7 hours ago
Latest Version:
1.0.0 (7 hours ago)
Factorio version:
2.0
Downloaded by:
0 users

Widescreen-friendly Space Age

Adjusts drag force on space platforms based on the average of width and height (rather than just width).

This makes the top speed of space platforms with full thrusters depend on the width-to-height ratio instead of maintaining a nearly constant ~500 km/s.

Further details

old formula

(thrust / (1 + weight / 10000000) - ((1500 * speed * speed + 1500 * abs(speed)) * (width * 0.5) + 10000) * sign(speed)) / weight / 60

new formula

(thrust / (1 + weight / 10000000) - ((1500 * speed * speed + 1500 * abs(speed)) * ((width + height) * 0.25) + 10000) * sign(speed)) / weight / 60

Credits

The implement of this mod was inspired by Rocs-Improved-Platform-Drag