hello everyone, could someone give me a code that makes the RPM Gauges show the rpm of jet engines, basically this code abs(Rpm1/1200)
makes the RPM Gauge show the rpm of propeller engines, but after putting in jet engines he simply stopped measuring
[RPM GAUGES]
45.7k OPaiTaOn
2.2 years ago
Jet engines in sp don't have a rpm variable, only thrust variable. You can simulate the rpm yourself with the thrust variable.
Jet engines have some rpm when idle, usually around 20% of max rpm.
.
Try something like this (produces rpm <= 1)
lerp(0.2, 1, THRUST / THRUST_MAX)