Profile image

[RPM GAUGES]

40.6k OPaiTaOn  1.7 years ago

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

  • Log in to leave a comment
  • Profile image

    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)

    +2 1.7 years ago