mirror of
https://github.com/HarbourMasters/Starship.git
synced 2025-01-23 13:35:11 +03:00
move starfield interpolation disable option to graphics
This commit is contained in:
parent
288504039f
commit
c5023899c2
@ -302,6 +302,10 @@ void DrawSettingsMenu(){
|
||||
UIWidgets::Tooltip("When Interpolation FPS setting is at least this threshold, add one frame of input lag (e.g. 16.6 ms for 60 FPS) in order to avoid jitter. This setting allows the CPU to work on one frame while GPU works on the previous frame.\nThis setting should be used when your computer is too slow to do CPU + GPU work in time.");
|
||||
}
|
||||
|
||||
UIWidgets::CVarCheckbox("Disable Starfield interpolation", "gDisableStarsInterpolation", {
|
||||
.tooltip = "Disable starfield interpolation to increase performance on slower CPUs"
|
||||
});
|
||||
|
||||
UIWidgets::PaddedSeparator(true, true, 3.0f, 3.0f);
|
||||
|
||||
|
||||
@ -517,10 +521,6 @@ void DrawDebugMenu() {
|
||||
"WARNING: Spawning an object that's not loaded in memory will likely result in a crash."
|
||||
});
|
||||
|
||||
UIWidgets::CVarCheckbox("Disable stars interpolation", "gDisableStarsInterpolation", {
|
||||
.tooltip = "Disable starfield interpolation for performance"
|
||||
});
|
||||
|
||||
UIWidgets::CVarCheckbox("Jump To Map", "gDebugJumpToMap", {
|
||||
.tooltip = "Press Z + R + C-UP to get back to the map"
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user