initial commit

This commit is contained in:
Citali 2021-01-11 13:05:25 +01:00
commit ececab5cc5
Signed by: Citali
GPG Key ID: CD1CD4279A473F9C
4 changed files with 49 additions and 0 deletions

10
.gitignore vendored Normal file
View File

@ -0,0 +1,10 @@
## FILES
config.json
realms_persistence.json
## FOLDERS
.mixin.out
logs
natives
resourcepacks
saves

8
config/fml.toml Normal file
View File

@ -0,0 +1,8 @@
# Enable forge global version checking
versionCheck = true
# does the splashscreen run
splashscreen = true
defaultConfigPath = "defaultconfigs"
# max threads for parallel loading : -1 uses Runtime#availableProcessors
maxThreads = -1

24
config/forge-client.toml Normal file
View File

@ -0,0 +1,24 @@
#Client only settings, mostly things related to rendering
[client]
#Toggle off to make missing model text in the gui fit inside the slot.
zoomInMissingModelTextInGui = false
#Enable uploading cloud geometry to the GPU for faster rendering.
forgeCloudsEnabled = true
#Disable culling of hidden faces next to stairs and slabs. Causes extra rendering, but may fix some resource packs that exploit this vanilla mechanic.
disableStairSlabCulling = false
#Enable Forge to queue all chunk updates to the Chunk Update thread.
#May increase FPS significantly, but may also cause weird rendering lag.
#Not recommended for computers without a significant number of cores available.
alwaysSetupTerrainOffThread = false
#Enable the Forge block rendering pipeline - fixes the lighting of custom models.
forgeLightPipelineEnabled = true
#EXPERIMENTAL: Enable the Forge block rendering pipeline - fixes the lighting of custom models.
experimentalForgeLightPipelineEnabled = false
#When enabled, makes specific reload tasks such as language changing quicker to run.
selectiveResourceReloadEnabled = true
#When enabled, Forge will show any warnings that occurred during loading.
showLoadWarnings = true
#Set to true to use a combined DEPTH_STENCIL attachment instead of two separate ones.
useCombinedDepthStencilAttachment = false

7
config/forge-common.toml Normal file
View File

@ -0,0 +1,7 @@
#General configuration settings
[general]
#Defines a default world type to use. The vanilla default world type is represented by 'default'.
#The modded world types are registry names which should include the registry namespace, such as 'examplemod:example_world_type'.
defaultWorldType = "default"