config update

This commit is contained in:
Xikaro 2023-11-16 16:57:32 +05:00
parent b4f5d8dd35
commit 8862475d26
7 changed files with 49 additions and 29 deletions

View file

@ -3,11 +3,11 @@
[general] [general]
#The CurseForge project ID for the modpack #The CurseForge project ID for the modpack
#Range: > 0 #Range: > 0
modpackProjectID = 0 modpackProjectID = 385053
#The name of the modpack #The name of the modpack
modpackName = "TerraFirmaGreg" modpackName = "TerraFirmaGreg"
#The version of the modpack #The version of the modpack
modpackVersion = "0.0.1" modpackVersion = "DEV"
#Use the metadata.json to determine the modpack version #Use the metadata.json to determine the modpack version
#ONLY ENABLE THIS IF YOU KNOW WHAT YOU ARE DOING #ONLY ENABLE THIS IF YOU KNOW WHAT YOU ARE DOING
useMetadata = false useMetadata = false

16
config/blur.json Normal file
View file

@ -0,0 +1,16 @@
{
"blurExclusions": [
"net.minecraft.client.gui.screens.ChatScreen",
"com.replaymod.lib.de.johni0702.minecraft.gui.container.AbstractGuiOverlay$UserInputGuiScreen",
"ai.arcblroth.projectInception.client.InceptionInterfaceScreen",
"net.optifine.gui.GuiChatOF",
"io.github.darkkronicle.advancedchatcore.chat.AdvancedChatScreen",
"net.coderbot.iris.gui.screen.ShaderPackScreen"
],
"fadeTimeMillis": 200,
"ease": true,
"radius": 8.0,
"gradientStart": 0,
"gradientEnd": 0,
"showScreenTitle": false
}

View file

@ -1,6 +1,6 @@
{ {
"maxchunkdist": { "maxRenderDistance": {
"desc:": "The distance at which chunks are kept in memory, regardless of whether the server unloads them. default = 32, maximum = 512", "desc:": "Maximum allowed render distance, default 64",
"maxchunkdist": 32 "maxRenderDistance": 64
} }
} }

View file

@ -1,5 +1,5 @@
#Early window height #Early window height
earlyWindowHeight = 480 earlyWindowHeight = 768
#Early window framebuffer scale #Early window framebuffer scale
earlyWindowFBScale = 1 earlyWindowFBScale = 1
#Enable forge global version checking #Enable forge global version checking
@ -7,7 +7,7 @@ versionCheck = true
#Early window provider #Early window provider
earlyWindowProvider = "fmlearlywindow" earlyWindowProvider = "fmlearlywindow"
#Early window width #Early window width
earlyWindowWidth = 854 earlyWindowWidth = 1024
#Early window starts maximized #Early window starts maximized
earlyWindowMaximized = false earlyWindowMaximized = false
#Default config path for servers #Default config path for servers

View file

@ -0,0 +1,3 @@
{
"rotateSpeed": 1.0
}

View file

@ -1,5 +1,5 @@
#This file stores configuration options for Iris, such as the currently active shaderpack #This file stores configuration options for Iris, such as the currently active shaderpack
#Thu Nov 16 15:42:36 YEKT 2023 #Thu Nov 16 16:38:18 YEKT 2023
colorSpace=SRGB colorSpace=SRGB
disableUpdateMessage=false disableUpdateMessage=false
enableDebugOptions=false enableDebugOptions=false

View file

@ -1,27 +1,28 @@
[general] [general]
# #
# If the TFC world preset 'tfc:overworld' should be set as the default world generation when creating a new world. # If the TFC world preset 'tfc:overworld' should be set as the default world generation when creating a new world.
defaultWorldPreset = "tfc:overworld" defaultWorldPreset = "tfc:overworld"
[calendar] [calendar]
# #
# The number of days in a month, for newly created worlds. # The number of days in a month, for newly created worlds.
# This can be modified in existing worlds using the /time command # This can be modified in existing worlds using the /time command
#Range: > 1 #Range: > 1
defaultMonthLength = 30 defaultMonthLength = 30
# #
# The start date for newly created worlds, in a number of ticks, for newly created worlds # The start date for newly created worlds, in a number of ticks, for newly created worlds
# This represents a number of days offset from January 1, 1000 # This represents a number of days offset from January 1, 1000
# The default is (5 * daysInMonth) = 40, which starts at June 1, 1000 (with the default daysInMonth = 8) # The default is (5 * daysInMonth) = 40, which starts at June 1, 1000 (with the default daysInMonth = 8)
#Range: > -1 #Range: > -1
defaultCalendarStartDay = 40 defaultCalendarStartDay = 40
[debug] [debug]
# #
# Enables a series of network fail-safes that are used to debug network connections between client and servers. # Enables a series of network fail-safes that are used to debug network connections between client and servers.
# Important: this MUST BE THE SAME as what the server has set, otherwise you are liable to see even stranger errors. # Important: this MUST BE THE SAME as what the server has set, otherwise you are liable to see even stranger errors.
enableNetworkDebugging = false enableNetworkDebugging = false
# #
# If enabled, TFC will validate that certain pieces of reloadable data fit the conditions we expect, for example heating recipes having heatable items. It will error or warn in the log if these conditions are not met. # If enabled, TFC will validate that certain pieces of reloadable data fit the conditions we expect, for example heating recipes having heatable items. It will error or warn in the log if these conditions are not met.
enableDatapackTests = false enableDatapackTests = false