more default settings
Some checks failed
/ Update wiki (push) Failing after 23s

This commit is contained in:
Lilith Ashley Nyx Arson 🔥 2025-01-09 19:38:02 +01:00
parent 2a168fb8d6
commit 6e14706baf
Signed by: lilith
SSH key fingerprint: SHA256:LAjgsAMyT3LO2JVtr6fQ4N3RTYoRRlIm5wAKsbDife4
9 changed files with 299 additions and 6 deletions

View file

@ -0,0 +1,176 @@
[embeddiumplus]
[embeddiumplus.general]
#Configure FPS Display mode
#Complete mode gives you min FPS count and average count
#Allowed Values: OFF, SIMPLE, ADVANCED
fpsDisplay = "ADVANCED"
#Shows GPU and memory usage onto FPS display
#Allowed Values: OFF, ON, GPU, RAM
fpsDisplaySystem = "ON"
#Set Fullscreen mode
#Borderless let you change between screens more faster and move your mouse across monitors
#Allowed Values: WINDOWED, BORDERLESS, FULLSCREEN
fullscreen = "WINDOWED"
#Configure FPS Display gravity
#Places counter on specified corner of your screen
#Allowed Values: LEFT, CENTER, RIGHT
fpsDisplayGravity = "LEFT"
#Toggle FPS Display shadow
#In case sometimes you can't see the text
fpsDisplayShadow = false
#Configure FPS Display margin
#Give some space between corner and text
#Range: 0 ~ 48
fpsDisplayMargin = 12
[embeddiumplus.performance]
#Toggles JREI item rendering until searching
#Increases performance a little bit and cleans your screen when you don't want to use it
hideJREI = false
#Sets culling mode
#Reduces number of visible faces when the neighbor blocks are leaves
#Allowed Values: ALL, OFF
leavesCulling = "OFF"
#Toggles Minecraft Fonts shadows
#Depending of the case may increase performance
#Gives a flat style text
fontShadows = true
[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, doesn't affect monsters culling
#Check the options below
enable = true
#Configure vertical max distance before cull entities
#Value is raw
#Range: 0 ~ 512
cullingMaxDistanceY = 32
#List of all Entities to be ignored by distance culling
#Uses ResourceLocation to identify it
#Example 1: "minecraft:bat" - Ignores bats only
#Example 2: "alexsmobs:*" - ignores all entities for alexmobs mod
whitelist = ["minecraft:ghast", "minecraft:ender_dragon", "iceandfire:*", "create:*"]
[embeddiumplus.performance.distanceCulling.entities.monsters]
#Configure horizontal max distance before cull monster entities
#Value is squared, default was 64^2 (or 64x64)
#Range: > 0
cullingMaxDistanceX = 16384
#Toggles distance culling for monsters (or hostile entities, whatever you want to call it), doesn't affect neutral/pacific entities
#Check the options above
enable = false
#Configure vertical max distance before cull monster entities
#Value is raw
#Range: 0 ~ 512
cullingMaxDistanceY = 64
#List of all monster entities to be ignored by distance culling
#Uses ResourceLocation to identify it
#Example 1: "minecraft:bat" - Ignores bats only
#Example 2: "alexsmobs:*" - ignores all entities for alexmobs mod
whitelist = ["minecraft:ghast", "minecraft:ender_dragon", "iceandfire:*", "create:*"]
[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
#Configure vertical max distance before cull Block entities
#Value is raw
#Range: 0 ~ 512
cullingMaxDistanceY = 32
#List of all Block Entities to be ignored by distance culling
#Uses ResourceLocation to identify it
#Example 1: "minecraft:chest" - Ignores chests only
#Example 2: "ae2:*" - ignores all Block entities from Applied Energetics 2
whitelist = ["waterframes:*"]
[embeddiumplus.performance.fastModels]
#Toggles FastBeds feature
enableBeds = false
#Toggles FastChest feature
#Without flywheel installed or using any backend, it increases FPS significatly on chest rooms
enableChests = false
[embeddiumplus.dynlights]
#Toggle if Block Entities should have dynamic lights
onTileEntities = true
#Configure how fast light whould be updated
#Allowed Values: OFF, SLOW, NORMAL, FAST, SUPERFAST, FASTESTS, REALTIME
updateSpeed = "REALTIME"
#Toggle if Entities should have dynamic lights
onEntities = true
updateOnlyOnPositionChange = true
[embeddiumplus.others]
#Configure if borderless fullscreen option should be attached to F11 or replace vanilla fullscreen
#Allowed Values: ATTACH, REPLACE, OFF
borderlessAttachModeOnF11 = "OFF"
#Toggles fast language reload
#Embeddedt points it maybe cause troubles to JEI, so ¿why not add it as a toggleable option?
fastLanguageReload = true
[embeddiumplus.quality]
#Chunks fade in speed
#This option doesn't affect performance, just changes speed
#Allowed Values: OFF, FAST, SLOW
chunkFadeSpeed = "SLOW"
#Clean my skies
#Blue band was a vanilla feature, toggle off will show sky color directly
blueBand = true
#Raise clouds
#Modify clouds height perfect for a adaptative world experience
#Range: 0 ~ 512
cloudsHeight = 192
#Do not show me your name
#disables nametag rendering for players and entities
disableNameTagRendering = false
#Toggle fog feature
#Fog was a vanilla feature
fog = true
[embeddiumplus.quality.darkness]
#Configure fog brightness on nether when darkness is enabled
#Range: 0.0 ~ 1.0
endFogBright = 0.5
#Configure min moon brightness level with darkness
#Range: 0.0 ~ 1.0
newMoonBright = 0.0
#Toggle Darkness on End dimension
enableOnEnd = false
#Toggle Darkness default mode for modded dimensions
valueByDefault = false
#Configure Darkness Mode
#Each config changes what is considered 'true darkness'
#Allowed Values: TOTAL_DARKNESS, PITCH_BLACK, DARK, DIM, OFF
mode = "TOTAL_DARKNESS"
#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
#Configure fog brightness on nether when darkness is enabled
#Range: 0.0 ~ 1.0
netherFogBright = 0.5
#Toggle Darkness on Nether dimension
enableOnNether = false
#Toggle darkness when dimension has no SkyLight
enableOnNoSkyLight = false
#Disables all bright sources of darkness like moon or fog
#Only affects darkness effect
enableBlockLightOnly = false
#Toggle Darkness on Overworld dimension
enableOnOverworld = true

View file

@ -0,0 +1 @@
{"v":1,"s":"3dc7091fae80370534a5ff40192242bfcf7e3b0371cb64fc81ac35219cd69a2eb5bd49735bee4b242bf2b0925baedb956e843c345ef55ae241751377e2752992","u":"c3bcd58f046d7942f4889723eeb899d4b6e6bfc10c94b2f9357038dfac50b42a95efac053920ed818b7bf1d2cf182d00f52dd90c03475704c232cec56a9aa8e5","p":"e4fbba78b3e05564ae2da8351238918a1d343079607a16c4384f20f715a04c672160bb589ad334f500efb7adb23f0b67dacf5ee4aa951db19c8c43ec5387e94e","t":1736328311}

View file

@ -0,0 +1,6 @@
# This is the configuration file for Embeddium.
#
# You can find information on editing this file and all the available options here:
# https://github.com/jellysquid3/sodium-fabric/wiki/Configuration-File
#
# By default, this file will be empty except for this notice.

View file

@ -0,0 +1,30 @@
{
"quality": {
"weather_quality": "DEFAULT",
"leaves_quality": "DEFAULT",
"enable_vignette": true,
"use_quad_normals_for_shading": false
},
"advanced": {
"enable_memory_tracing": false,
"use_advanced_staging_buffers": true,
"disable_incompatible_mod_warnings": false,
"cpu_render_ahead_limit": 3
},
"performance": {
"chunk_builder_threads": 0,
"always_defer_chunk_updates_v2": false,
"animate_only_visible_textures": true,
"use_entity_culling": true,
"use_fog_occlusion": true,
"use_block_face_culling": true,
"use_compact_vertex_format": true,
"use_translucent_face_sorting_v2": true,
"use_no_error_g_l_context": true
},
"notifications": {
"force_disable_donation_prompts": false,
"has_cleared_donation_button": true,
"has_seen_donation_prompt": false
}
}

View file

@ -0,0 +1,8 @@
#This file stores configuration options for Iris, such as the currently active shaderpack
#Thu Jan 09 19:36:44 CET 2025
colorSpace=SRGB
disableUpdateMessage=false
enableDebugOptions=false
maxShadowRenderDistance=32
shaderPack=MakeUp-UltraFast-9.1b.zip
enableShaders=true

View file

@ -15,7 +15,7 @@ reducedDebugInfo:false
showSubtitles:false
directionalAudio:false
touchscreen:false
fullscreen:true
fullscreen:false
bobView:true
toggleCrouch:false
toggleSprint:false
@ -31,8 +31,8 @@ glintStrength:0.0
damageTiltStrength:1.0
highContrast:false
gamma:0.5
renderDistance:8
simulationDistance:8
renderDistance:2
simulationDistance:5
entityDistanceScaling:1.0
guiScale:2
particles:0
@ -42,7 +42,7 @@ ao:true
prioritizeChunkUpdates:0
biomeBlendRadius:2
renderClouds:"true"
resourcePacks:["tacz_resources","vanilla","mod_resources","Moonlight Mods Dynamic Assets"]
resourcePacks:["tacz_resources","vanilla","mod_resources","Moonlight Mods Dynamic Assets","fabric"]
incompatibleResourcePacks:[]
lastServer:arson.pw
lang:en_us
@ -179,6 +179,37 @@ key_key.ars_nouveau.qc8:key.keyboard.unknown
key_key.ars_nouveau.qc9:key.keyboard.unknown
key_key.ars_nouveau.qc10:key.keyboard.unknown
key_key.ars_nouveau.familiar_toggle:key.keyboard.unknown
key_key.jei.toggleOverlay:key.keyboard.o:CONTROL
key_key.jei.clearSearchBar:key.mouse.right
key_key.jei.transferRecipeBookmark:key.mouse.left:SHIFT
key_key.jei.toggleCheatMode:key.keyboard.unknown
key_key.jei.cheatOneItem2:key.mouse.right
key_key.jei.previousCategory:key.keyboard.page.up:SHIFT
key_key.jei.toggleHideIngredient:key.mouse.left:CONTROL
key_key.jei.previousSearch:key.keyboard.up
key_key.jei.nextSearch:key.keyboard.down
key_key.jei.cheatItemStack2:key.mouse.middle
key_key.jei.nextCategory:key.keyboard.page.down:SHIFT
key_key.jei.nextRecipePage:key.keyboard.page.down
key_key.jei.toggleCheatModeConfigButton:key.mouse.left:CONTROL
key_key.jei.toggleBookmarkOverlay:key.keyboard.unknown
key_key.jei.previousRecipePage:key.keyboard.page.up
key_key.jei.showUses:key.keyboard.u
key_key.jei.cheatOneItem:key.mouse.left
key_key.jei.previousPage:key.keyboard.unknown
key_key.jei.nextPage:key.keyboard.unknown
key_key.jei.showRecipe2:key.mouse.left
key_key.jei.copy.recipe.id:key.keyboard.unknown
key_key.jei.toggleWildcardHideIngredient:key.mouse.right:CONTROL
key_key.jei.showUses2:key.mouse.right
key_key.jei.bookmark:key.keyboard.a
key_key.jei.cheatItemStack:key.mouse.left:SHIFT
key_key.jei.maxTransferRecipeBookmark:key.mouse.left:CONTROL
key_key.jei.closeRecipeGui:key.keyboard.escape
key_key.jei.toggleEditMode:key.keyboard.unknown
key_key.jei.showRecipe:key.keyboard.r
key_key.jei.recipeBack:key.keyboard.backspace
key_key.jei.focusSearch:key.keyboard.f:CONTROL
key_physicsmod.keybinding.guiphysics:key.keyboard.f6
key_physicsmod.keybinding.physicsmenu:key.keyboard.f7
key_physicsmod.keybinding.togglephysics:key.keyboard.unknown
@ -186,6 +217,8 @@ key_physicsmod.keybinding.debug:key.keyboard.unknown
key_key.jade.config:key.keyboard.keypad.0
key_key.jade.show_overlay:key.keyboard.unknown
key_key.jade.toggle_liquid:key.keyboard.unknown
key_key.jade.show_recipes:key.keyboard.keypad.3
key_key.jade.show_uses:key.keyboard.keypad.4
key_key.jade.narrate:key.keyboard.unknown
key_key.jade.show_details:key.keyboard.left.shift
key_create.keyinfo.toolmenu:key.keyboard.left.alt
@ -228,6 +261,7 @@ key_figura.config.popup_button:key.mouse.5
key_figura.config.reload_button:key.keyboard.unknown
key_figura.config.panic_button:key.keyboard.unknown
key_figura.config.wardrobe_button:key.keyboard.unknown
key_key.raised.options:key.keyboard.grave.accent
key_key.occultism.backpack:key.keyboard.b
key_key.occultism.storage_remote:key.keyboard.n
key_key.occultism.familiar.greedy_familiar:key.keyboard.unknown

View file

@ -8,6 +8,26 @@ hash = "96033d007f13f5c4c4a6e38f796ded00d9523bf54c621dc621f967c627f554b1"
file = ".forgejo/workflows/automation.yaml"
hash = "01ce8481a3bcf2c58941c0ac7f31da48deda0f54e516c39a0f420cc75fa4a0af"
[[files]]
file = "config/yosbr/config/embeddium++.toml"
hash = "e0492ccf92ea1a99a26c79ec9ff7a74dc233b5de133bde8a0d9d0657f2a77849"
[[files]]
file = "config/yosbr/config/embeddium-fingerprint.json"
hash = "40d167487205742de6f647b0d7fbbd3b98126a367ad0c3ee2c06eeb7f4264697"
[[files]]
file = "config/yosbr/config/embeddium-mixins.properties"
hash = "09ff183e061d93b79514bc171bf9118497578757e7a5c45946039487656e2619"
[[files]]
file = "config/yosbr/config/embeddium-options.json"
hash = "86904b765369d1c7ef3e290552f6ea9e1368145deb2c8cbe11873ca3a0838187"
[[files]]
file = "config/yosbr/config/oculus.properties"
hash = "df8597359e5b31361c9b239b50f8160ac2da5d8846e950369545fff9e8218126"
[[files]]
file = "config/yosbr/config/physicsmod/physics_animations_client_config.json"
hash = "d8a629b25da461374926b02b6649ed90154cb1bb6ab7e5208f519b5bcf29b08b"
@ -66,7 +86,7 @@ hash = "629ff218d4305e5262d0eff38ca2261f2033dda46c8e9f8c0d5815bfcf52bd77"
[[files]]
file = "config/yosbr/options.txt"
hash = "e061e1210792edee27b08d1fb9e940c74ab6c0295b8138fb6074a050989826e8"
hash = "ea3f2619db558ce4925dc6caa55c747e1fc351d9526c307c0a116e3e3bb3c49a"
[[files]]
file = "mods/alternate-current.pw.toml"
@ -547,3 +567,8 @@ metafile = true
file = "mods/zeta.pw.toml"
hash = "3664bd4082d2852e252fcf094f0d82f4e20b3adb3d9f894c46be6a316e397971"
metafile = true
[[files]]
file = "shaderpacks/makeup-ultra-fast-shaders.pw.toml"
hash = "dc59622f24af5707e10bee4db7b4903ec50a116eab3acc0676ddcf3aafce8316"
metafile = true

View file

@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0"
[index]
file = "index.toml"
hash-format = "sha256"
hash = "12cec68a475f43fde812275c1cc60362c724142eee8e66926515923d9db17c2f"
hash = "628450339ce1c9fd3ae9517f9f66c85253ec45c2cfd5a0c541948d23edc39591"
[versions]
minecraft = "1.20.1"

View file

@ -0,0 +1,13 @@
name = "MakeUp - Ultra Fast"
filename = "MakeUp-UltraFast-9.1b.zip"
side = "client"
[download]
url = "https://cdn.modrinth.com/data/izsIPI7a/versions/E96Xhx40/MakeUp-UltraFast-9.1b.zip"
hash-format = "sha1"
hash = "4eab6926712cd314932d569c486ef20e08f6c650"
[update]
[update.modrinth]
mod-id = "izsIPI7a"
version = "E96Xhx40"