cfg
This commit is contained in:
parent
234bb250c0
commit
7ea8c38c55
5 changed files with 21 additions and 17 deletions
|
|
@ -151,7 +151,7 @@
|
|||
"stripTranslationFormatting": false,
|
||||
"stripExtraGuiElements": false,
|
||||
"renderTooltips": true,
|
||||
"configKeyCode": 48
|
||||
"configKeyCode": -1
|
||||
},
|
||||
"displaySettings": {
|
||||
"presenceData": {
|
||||
|
|
|
|||
|
|
@ -37,6 +37,8 @@
|
|||
#Forge Energy conversion rate (in FE/t at 256 RPM, value is the FE/t generated and consumed is at 256rpm).
|
||||
#Range: > 0
|
||||
fe_at_max_rpm = 480
|
||||
#If audio should be enabled or not.
|
||||
audio_enabled = true
|
||||
|
||||
#Portable Energy Interface
|
||||
[portable_energy_interface]
|
||||
|
|
|
|||
|
|
@ -42,10 +42,6 @@
|
|||
[embeddiumplus.performance.distanceCulling]
|
||||
|
||||
[embeddiumplus.performance.distanceCulling.entities]
|
||||
#Configure horizontal max distance before cull entities
|
||||
#Value is squared, default was 64^2 (or 64x64)
|
||||
#Range: > 0
|
||||
cullingMaxDistanceX = 4096
|
||||
#Toggles distance culling for entities
|
||||
#Maybe you use another mod for that :(
|
||||
enable = true
|
||||
|
|
@ -54,16 +50,16 @@
|
|||
#Example 1: "minecraft:bat" - Ignores bats only
|
||||
#Example 2: "alexsmobs:*" - ignores all entities for alexmobs mod
|
||||
whitelist = []
|
||||
#Configure horizontal max distance before cull entities
|
||||
#Value is squared, default was 64^2 (or 64x64)
|
||||
#Range: > 0
|
||||
cullingDistanceX = 4096
|
||||
#Configure vertical max distance before cull entities
|
||||
#Value is raw
|
||||
#Range: 0 ~ 512
|
||||
cullingMaxDistanceY = 32
|
||||
cullingDistanceY = 32
|
||||
|
||||
[embeddiumplus.performance.distanceCulling.tileEntities]
|
||||
#Configure horizontal max distance before cull Block entities
|
||||
#Value is squared, default was 64^2 (or 64x64)
|
||||
#Range: > 0
|
||||
cullingMaxDistanceX = 4096
|
||||
#Toggles distance culling for Block Entities
|
||||
#Maybe you use another mod for that :(
|
||||
enable = true
|
||||
|
|
@ -72,10 +68,14 @@
|
|||
#Example 1: "minecraft:chest" - Ignores chests only
|
||||
#Example 2: "ae2:*" - ignores all Block entities from Applied Energetics 2
|
||||
whitelist = []
|
||||
#Configure horizontal max distance before cull Block entities
|
||||
#Value is squared, default was 64^2 (or 64x64)
|
||||
#Range: > 0
|
||||
cullingDistanceX = 4096
|
||||
#Configure vertical max distance before cull Block entities
|
||||
#Value is raw
|
||||
#Range: 0 ~ 512
|
||||
cullingMaxDistanceY = 32
|
||||
cullingDistanceY = 32
|
||||
|
||||
[embeddiumplus.dynlights]
|
||||
#Toggle if Block Entities should have dynamic lights
|
||||
|
|
@ -102,7 +102,7 @@
|
|||
chunkFadeSpeed = "SLOW"
|
||||
#Raise clouds
|
||||
#Modify clouds height perfect for a adaptative world experience
|
||||
#Range: 0 ~ 512
|
||||
#Range: 0 ~ 320
|
||||
cloudsHeight = 256
|
||||
#Toggle fog feature
|
||||
#Fog was a vanilla feature, toggling off may increases performance
|
||||
|
|
@ -118,6 +118,7 @@
|
|||
#Toggle Darkness on End dimension
|
||||
enableOnEnd = false
|
||||
#Toggle Darkness default mode for modded dimensions
|
||||
#This option will be replaced with a whitelist in a near future
|
||||
valueByDefault = false
|
||||
#Configure Darkness Mode
|
||||
#Each config changes what is considered 'true darkness'
|
||||
|
|
@ -125,9 +126,6 @@
|
|||
mode = "PITCH_BLACK"
|
||||
#Toggles if moon phases affects darkness in the overworld
|
||||
affectedByMoonPhase = true
|
||||
#List of all dimensions to use True Darkness
|
||||
#This option overrides 'valueByDefault' state
|
||||
dimensionWhitelist = []
|
||||
#Configure max moon brightness level with darkness
|
||||
#Range: 0.0 ~ 1.0
|
||||
fullMoonBright = 0.25
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
# Simple Voice Chat client config v1.20.1-2.5.1
|
||||
# Simple Voice Chat client config v1.20.1-2.5.2
|
||||
|
||||
# If the voice chat onboarding process has been finished
|
||||
onboarding_finished=false
|
||||
# The voice chat volume
|
||||
voice_chat_volume=1.0
|
||||
# The threshold for voice activation in dB
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
# Simple Voice Chat server config v1.20.1-2.5.1
|
||||
# Simple Voice Chat server config v1.20.1-2.5.2
|
||||
|
||||
# The port of the voice chat server
|
||||
# Setting this to "-1" sets the port to the Minecraft servers port (Not recommended)
|
||||
|
|
@ -41,3 +41,5 @@ login_timeout=10000
|
|||
# The range where the voice chat should broadcast audio to
|
||||
# A value <0 means 'max_voice_distance'
|
||||
broadcast_range=-1.0
|
||||
# If the voice chat server should reply to pings
|
||||
allow_pings=true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue