mirror of
https://git.fellies.tech/minecraft/fellies.git
synced 2021-02-13 10:18:48 +00:00
initial commit
This commit is contained in:
commit
ececab5cc5
10
.gitignore
vendored
Normal file
10
.gitignore
vendored
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
## FILES
|
||||||
|
config.json
|
||||||
|
realms_persistence.json
|
||||||
|
|
||||||
|
## FOLDERS
|
||||||
|
.mixin.out
|
||||||
|
logs
|
||||||
|
natives
|
||||||
|
resourcepacks
|
||||||
|
saves
|
8
config/fml.toml
Normal file
8
config/fml.toml
Normal 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
24
config/forge-client.toml
Normal 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
7
config/forge-common.toml
Normal 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"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user