3 New Notifications

New Badge Earned
Get 1K upvotes on your post
Life choices of my cat
Earned 210

Drag Images here or Browse from your computer.

Trending Posts
Sorted by Newest First
D
DemoNx3mal 05.10.20 06:28 pm

Raise FPS in Cockpit (Microsoft Flight Simulator)

Due to the significant subsidence of FPS in the liners, there is a small feature to enhance the FPS by reducing the frequency of updating screens on the dashboard. It's not noticeable from the outside. The bottom line is, you have each screen updated 60 times per second, and will be 20. FPS will increase by 10-15.
So
We go to the folder where you download packages of updates for sim:
The standard when installed via Steam is here:
C:Users"User Name "AppData"Roaming"Microsoft Flight Simulator"Official"Steam" asobo-vcockpits-instruments'html_ui" Pages'VCockpit Instruments'Shared'

Here we find the file BaseInstrument.js - open it through The NotePad and find the line CanUpdate ()
We change what is below to the following parameter on this:
SpoilerCanUpdate
var quality = this.getQuality();
if (quality == Quality.high) {
if ((this.frameCount % 4) != 0) {
return false;
}
}
if (quality == Quality.medium) {
if ((this.frameCount % 8) != 0) {
return false;
}
}
else if (quality == Quality.low) {
if ((this.frameCount % 32) != 0) {
return false;
}
}
else if (quality == Quality.hidden) {
if ((this.frameCount % 128) != 0) {
return false;
}
}
else if (quality == Quality.disabled) {
return false;
}
return true;
}

Don't forget to back up
0 Comments
Sort by: