Fellies/config[copied]/fpsreducer/fpsreducer-client.toml

120 lines
2.8 KiB
TOML
Raw Normal View History

2021-01-17 12:40:59 +00:00
#General options
[general]
2021-01-26 10:32:42 +00:00
#Reference position of HUD.
#Range: 1 ~ 8
hudReferencePos = 3
2021-01-17 12:40:59 +00:00
#Frame rate during reducing.
#Range: 1 ~ 60
idleFps = 10
2021-01-26 10:32:42 +00:00
#Suppress master volume if the window is inactive.
suppressSound = true
2021-01-17 12:40:59 +00:00
#Frame rate during GUI screen(Inventory/Menu) is opened.(0:OFF)
#Range: 0 ~ 60
guiScreenFps = 0
2021-01-26 10:32:42 +00:00
#Enable FPS Reducer features.
enableFpsReducer = true
#Waiting time(sec) until reducing FPS. (0:OFF)
#Range: 0 ~ 86400
waitingTime = 300
#HUD scale (default: 1.0)
#Range: 0.1 ~ 2.0
hudScale = 1.0
#Enable HUD.
hudEnabled = true
2021-01-17 12:40:59 +00:00
#Detect movement of player position. (0:OFF, 1:Riding/Flying, 2:Always)
#Range: 0 ~ 2
detectMoving = 1
#Ignore the mouse button holding.
ignoreHoldButton = false
2021-01-26 10:32:42 +00:00
#HUD information (1:FPS/CPU(long), 1:FPS/CPU(short), 3:FPS/CPU(2lines), 4:FPS only, 5:CPU only)
#Range: 0 ~ 5
hudInfo = 4
#Behavior of HUD display when a chat window opened. (0:keep to display, 1:off, 2:dodge a chat box)
#Range: 0 ~ 2
hudBehindChatBox = 2
2021-01-17 12:40:59 +00:00
#Force reducing FPS if the window is inactive.
reducingInBackground = true
#Suppression master volume ratio in inactive (0-100).
#Range: 0 ~ 100
suppressedVolume = 20
#HUD offsets from reference positions at the screen edge.
[hud_offset]
#Range: > -2147483648
2021-01-26 10:32:42 +00:00
bottomRight_Y = -2
2021-01-17 12:40:59 +00:00
#Range: > -2147483648
2021-01-26 10:32:42 +00:00
bottomRight_X = -2
2021-01-17 12:40:59 +00:00
#Range: > -2147483648
2021-01-26 10:32:42 +00:00
bottomLeft_Y = -2
2021-01-17 12:40:59 +00:00
#Range: > -2147483648
2021-01-26 10:32:42 +00:00
bottomCenter_X = 0
2021-01-17 12:40:59 +00:00
#Range: > -2147483648
2021-01-26 10:32:42 +00:00
bottomLeft_X = 2
2021-01-17 12:40:59 +00:00
#Range: > -2147483648
2021-01-26 10:32:42 +00:00
bottomCenter_Y = -2
2021-01-17 12:40:59 +00:00
#Range: > -2147483648
2021-01-26 10:32:42 +00:00
topCenter_Y = 2
2021-01-17 12:40:59 +00:00
#Range: > -2147483648
2021-01-26 10:32:42 +00:00
topCenter_X = 0
2021-01-17 12:40:59 +00:00
#Range: > -2147483648
2021-01-26 10:32:42 +00:00
topLeft_Y = 2
2021-01-17 12:40:59 +00:00
#Range: > -2147483648
2021-01-26 10:32:42 +00:00
centerRight_Y = 0
2021-01-17 12:40:59 +00:00
#Range: > -2147483648
2021-01-26 10:32:42 +00:00
topLeft_X = 2
2021-01-17 12:40:59 +00:00
#Range: > -2147483648
2021-01-26 10:32:42 +00:00
centerRight_X = -2
2021-01-17 12:40:59 +00:00
#Range: > -2147483648
2021-01-26 10:32:42 +00:00
centerLeft_Y = 0
2021-01-17 12:40:59 +00:00
#Range: > -2147483648
2021-01-26 10:32:42 +00:00
topRight_Y = 2
2021-01-17 12:40:59 +00:00
#Range: > -2147483648
centerLeft_X = 2
#Range: > -2147483648
2021-01-26 10:32:42 +00:00
topRight_X = -2
2021-01-17 12:40:59 +00:00
#Alignments of HUD strings.
[hud_alignment]
#Range: 0 ~ 2
2021-01-26 10:32:42 +00:00
bottomLeft = 0
2021-01-17 12:40:59 +00:00
#Range: 0 ~ 2
2021-01-26 10:32:42 +00:00
centerLeft = 0
2021-01-17 12:40:59 +00:00
#Range: 0 ~ 2
2021-01-26 10:32:42 +00:00
bottomCenter = 2
2021-01-17 12:40:59 +00:00
#Range: 0 ~ 2
bottomRight = 1
#Range: 0 ~ 2
2021-01-26 10:32:42 +00:00
topLeft = 0
2021-01-17 12:40:59 +00:00
#Range: 0 ~ 2
2021-01-26 10:32:42 +00:00
topRight = 1
2021-01-17 12:40:59 +00:00
#Range: 0 ~ 2
2021-01-26 10:32:42 +00:00
centerRight = 1
#Range: 0 ~ 2
topCenter = 2
2021-01-17 12:40:59 +00:00
#Extra options
[extra]
#HUD color
hudColor = "f0f0f0"
#HUD color for FPS display in GUI screen(inventory and menu).
hudGuiModeColor = "00f0f0"
#Allow player configuration mode.
allowPlayerConfig = true
#CPU usage type. (0:one processor basis, 1:all processors basis)
#Range: 0 ~ 1
cpuUsageType = 0
#Which thread's CPU usage should be calculated. (0:client thread only, 1:entire Minecraft process including server threads)
#Range: 0 ~ 1
cpuUsageThread = 0
2021-01-26 10:32:42 +00:00
#Reduced fps HUD color
hudReductionColor = "00f000"
2021-01-17 12:40:59 +00:00
#Debug options
[debug]
#Show event log on the game screen.
logInChat = false
2021-01-26 10:32:42 +00:00
#Enable debug log
debugLog = false
2021-01-17 12:40:59 +00:00