Widescreen-friendly Space Age deprecated


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 days ago
2.0
6
Factorio: Space Age Icon Space Age Mod
Transportation Logistics
Owner:
nullptr0x0
Source:
N/A
Homepage:
N/A
License:
MIT
Created:
7 days ago
Latest Version:
1.0.0 (7 days ago)
Factorio version:
2.0
Downloaded by:
6 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