Mods: Add Default Options

replacing options.txt and personal preferences is no more!
This commit is contained in:
Wroclaw 2022-04-16 10:53:48 +02:00
parent 50e8172b4f
commit be348dc65e
14 changed files with 233 additions and 122 deletions

View file

@ -0,0 +1,161 @@
{
"basics": {
"favorites": [],
// Declares whether cheating mode is on.
"cheating": false,
"favoritesEnabled": true,
"keyBindings": {
"recipeKeybind": {
"keyCode": "key.keyboard.r",
"modifier": 0
},
"usageKeybind": {
"keyCode": "key.keyboard.u",
"modifier": 0
},
"hideKeybind": {
"keyCode": "key.keyboard.o",
"modifier": 2
},
"previousPageKeybind": {
"keyCode": "key.keyboard.unknown",
"modifier": 0
},
"nextPageKeybind": {
"keyCode": "key.keyboard.unknown",
"modifier": 0
},
"focusSearchFieldKeybind": {
"keyCode": "key.keyboard.f",
"modifier": 2
},
"copyRecipeIdentifierKeybind": {
"keyCode": "key.mouse.middle",
"modifier": 0
},
"favoriteKeybind": {
"keyCode": "key.keyboard.a",
"modifier": 0
},
"exportImageKeybind": {
"keyCode": "key.keyboard.f8",
"modifier": 0
},
"previousScreenKeybind": {
"keyCode": "key.keyboard.backspace",
"modifier": 0
}
},
// Declares whether REI is visible.
"overlayVisible": true,
"cheatingStyle": "GRAB",
"motion": {
"favoritesAnimation": false
}
},
"advanced": {
"filtering": {
"shouldFilterDisplays": true,
"filteringRules": [
"{id:\"roughlyenoughitems:manual\",rule:{}}"
],
"filteredStacks": []
},
"enableJeiCompatibilityLayer": true,
"tooltips": {
// Declares whether REI should append mod names to entries.
"appendModNames": false,
// Declares whether favorites tooltip should be displayed.
"displayFavoritesTooltip": false
},
"layout": {
// The ordering of the items on the entry panel.
"entryPanelOrdering": "REGISTRY_ASCENDING",
// Declares the maximum amount of recipes displayed in a page if possible.
"maxRecipesPerPage": 12,
// Declares the maximum amount of recipes displayed in a page if possible.
"maxRecipesPageHeight": 300,
// Declares whether entry rendering time should be debugged.
"debugRenderTimeRequired": false,
// Merges displays with equal contents under 1 display.
"mergeDisplayUnderOne": true,
"favoriteAddWidgetMode": "ALWAYS_VISIBLE"
},
"accessibility": {
"entrySize": 1.0,
// Declares the position of the entry panel.
"displayPanelLocation": "RIGHT",
// Declares whether scrolled entry panel should snap to rows.
"snapToRows": false,
// Declares how the scrollbar in composite screen should act.
"compositeScrollBarPermanent": false,
"toastDisplayedOnCopyIdentifier": true,
// Declares whether REI should use compact tabs for categories.
"useCompactTabs": true
},
"search": {
// Declares whether search time should be debugged.
"debugSearchTimeRequired": false,
// Declares whether REI should search async.
"asyncSearch": true,
// Declares how many entries should be grouped one async search.
"asyncSearchPartitionSize": 100,
"tooltipSearch": "ALWAYS",
"tagSearch": "PREFIX",
"identifierSearch": "ALWAYS",
"modSearch": "PREFIX"
},
"commands": {
// Declares the command used to change gamemode.
"gamemodeCommand": "/gamemode {gamemode}",
// Declares the command used in servers to cheat items.
"giveCommand": "/give {player_name} {item_identifier}{nbt} {count}",
// Declares the command used to change weather.
"weatherCommand": "/weather {weather}",
// Declares the command used to change time.
"timeCommand": "/time set {time}"
},
"miscellaneous": {
// Declares whether arrows in containers should be clickable.
"clickableRecipeArrows": true,
"registerRecipesInAnotherThread": true,
"newFastEntryRendering": true,
"cachingFastEntryRendering": true
}
},
"appearance": {
"recipeScreenType": "ORIGINAL",
// Declares the appearance of REI windows.
"theme": "LIGHT",
"layout": {
// Declares the position of the search field.
"searchFieldLocation": "BOTTOM_SIDE",
// Declares the position of the config button.
"configButtonLocation": "LOWER",
// Declares whether the craftable filter button is enabled.
"enableCraftableOnlyButton": true
},
// Declares the appearance of recipe's border.
"recipeBorder": "DEFAULT",
// Declares whether entry panel is scrolled.
"scrollingEntryListWidget": false,
"horizontalEntriesBoundaries": 1.0,
"verticalEntriesBoundaries": 1.0,
"horizontalEntriesBoundariesColumns": 18,
"verticalEntriesBoundariesRows": 1000,
"favoritesHorizontalEntriesBoundaries": 1.0,
"favoritesHorizontalEntriesBoundariesColumns": 9,
"syntaxHighlightingMode": "COLORFUL",
"isFocusModeZoomed": false
},
"functionality": {
// Declares whether REI should remove the recipe book.
"disableRecipeBook": false,
// Declares whether mob effects should be on the left side instead of the right side.
"leftSideMobEffects": true,
// Declares whether subsets is enabled.
"isSubsetsEnabled": false,
"allowInventoryHighlighting": true,
"itemCheatingMode": "REI_LIKE"
}
}

View file

@ -0,0 +1,60 @@
{
"animation_settings": {
"animation": true,
"water": true,
"lava": true,
"fire": true,
"portal": true,
"block_animations": true,
"sculk_sensor": false
},
"particle_settings": {
"particles": true,
"rain_splash": true,
"explosion": true,
"water": true,
"smoke": true,
"potion": true,
"portal": true,
"redstone": true,
"drip": true,
"firework": true,
"bubble": true,
"environment": true,
"villagers": true,
"composter": true,
"block_break": true,
"block_breaking": true
},
"detail_settings": {
"sky": true,
"sun_moon": true,
"stars": true,
"rain_snow": true,
"biome_colors": true,
"sky_colors": true
},
"render_settings": {
"fog_distance": 33,
"light_updates": true,
"item_frame": true,
"armor_stand": true,
"painting": true,
"piston": true
},
"extra_settings": {
"overlay_corner": "TOP_LEFT",
"show_fps": false,
"show_f_p_s_extended": true,
"show_coords": false,
"reduce_resolution_on_mac": true,
"cloud_height": 192,
"toasts": true,
"instant_sneak": false,
"prevent_shaders": false,
"use_fast_random": true
},
"notification_settings": {
"hide_r_s_o_recommendation": false
}
}

View file

@ -0,0 +1,104 @@
#CONFIG ONLY OPTIONS
ignoreUpdate:324
settingsButton:false
allowWrongWorldTeleportation:false
differentiateByServerAddress:true
debugEntityIcons:false
debugEntityVariantIds:false
#INGAME SETTINGS (DO NOT EDIT!)
updateNotification:false
minimap:false
caveMaps:0
caveZoom:0
showWaypoints:true
showIngameWaypoints:true
displayRedstone:true
deathpoints:true
oldDeathpoints:true
distance:1
showCoords:true
lockNorth:true
zoom:0
minimapSize:169
chunkGrid:8
slimeChunks:false
mapSafeMode:false
minimapOpacity:100.0
waypointsIngameIconScale:0
waypointsIngameDistanceScale:0
waypointsIngameNameScale:0
waypointsIngameCloseScale:1.0
antiAliasing:false
blockColours:0
lighting:true
dotsStyle:0
dotNameScale:1.0
compassOverWaypoints:false
showBiome:false
showFlowers:true
keepWaypointNames:false
waypointsDistanceExp:0
waypointsDistanceMin:0.0
defaultWaypointTPCommandFormat:/tppos {x} {y} {z}
defaultWaypointTPCommandRotationFormat:/tppos {x} {y} {z} {yaw} ~
arrowScale:1.0
arrowColour:0
smoothDots:false
worldMap:true
terrainDepth:true
terrainSlopes:2
mainEntityAs:0
blockTransparency:true
waypointOpacityIngame:80
waypointOpacityMap:90
hideWorldNames:1
openSlimeSettings:true
alwaysShowDistance:false
showLightLevel:0
renderLayerIndex:1
crossDimensionalTp:true
showTime:0
biomeColorsVanillaMode:false
lookingAtAngle:10
lookingAtAngleVertical:180
centeredEnlarged:false
zoomedOutEnlarged:false
minimapTextAlign:0
showAngles:false
waypointsMutualEdit:true
compassLocation:1
compassScale:1
caveMapsDepth:13
hideWaypointCoordinates:false
renderAllSets:false
playerArrowOpacity:100
waypointsBottom:false
minimapShape:0
lightOverlayType:-1
lightOverlayMaxLight:7
lightOverlayMinLight:0
lightOverlayColor:13
uiScale:0
bossHealthPushBox:1
potionEffectPushBox:1
minimapFrame:0
minimapFrameColor:9
compassColor:9
northCompassColor:-1
showDimensionName:false
displayMultipleWaypointInfo:1
entityRadar:true
adjustHeightForCarpetLikeBlocks:true
autoConvertWaypointDistanceToKmThreshold:10000
waypointDistancePrecision:1
mainDotSize:2
partialYTeleportation:true
deleteReachedDeathpoints:true
hideMinimapUnderScreen:true
hideMinimapUnderF3:true
interface:dummy:0:36:true:false:false:false
interface:dummy:0:10000:true:false:false:false
interface:dummy:0:0:false:false:true:false
interface:dummy:0:36:true:false:false:false
interface:gui.xaero_minimap:0:0:false:false:true:false
#WAYPOINTS HAVE BEEN MOVED TO /XaeroWaypoints

View file

@ -0,0 +1,32 @@
ignoreUpdate:128
updateNotification:false
differentiateByServerAddress:true
netherlikeCaveMapAllowed:true
debug:false
lighting:true
colours:0
loadChunks:true
updateChunks:true
terrainSlopes:2
terrainDepth:true
footsteps:true
flowers:true
coordinates:true
biomeColorsVanillaMode:false
waypoints:true
renderArrow:true
displayZoom:true
worldmapWaypointsScale:1.0
openMapAnimation:false
reloadVersion:0
reloadEverything:false
zoomButtons:true
waypointBackgrounds:true
detectAmbiguousY:true
showDisabledWaypoints:false
closeWaypointsWhenHopping:true
adjustHeightForCarpetLikeBlocks:true
onlyCurrentMapWaypoints:false
minZoomForLocalWaypoints:0.0
arrowColour:-2
globalVersion:18

View file

@ -0,0 +1,71 @@
key_key.attack:key.mouse.left:NONE
key_key.use:key.mouse.right:NONE
key_key.forward:key.keyboard.w:NONE
key_key.left:key.keyboard.a:NONE
key_key.back:key.keyboard.s:NONE
key_key.right:key.keyboard.d:NONE
key_key.jump:key.keyboard.space:NONE
key_key.sneak:key.keyboard.left.shift:NONE
key_key.sprint:key.keyboard.left.control:NONE
key_key.drop:key.keyboard.q:NONE
key_key.inventory:key.keyboard.e:NONE
key_key.chat:key.keyboard.enter:NONE
key_key.playerlist:key.keyboard.tab:NONE
key_key.pickItem:key.mouse.middle:NONE
key_key.command:key.keyboard.slash:NONE
key_key.socialInteractions:key.keyboard.p:NONE
key_key.screenshot:key.keyboard.f2:NONE
key_key.togglePerspective:key.keyboard.f5:NONE
key_key.smoothCamera:key.keyboard.unknown:NONE
key_key.fullscreen:key.keyboard.f11:NONE
key_key.spectatorOutlines:key.keyboard.unknown:NONE
key_key.swapOffhand:key.keyboard.f:NONE
key_key.saveToolbarActivator:key.keyboard.c:NONE
key_key.loadToolbarActivator:key.keyboard.x:NONE
key_key.advancements:key.keyboard.l:NONE
key_key.hotbar.1:key.keyboard.1:NONE
key_key.hotbar.2:key.keyboard.2:NONE
key_key.hotbar.3:key.keyboard.3:NONE
key_key.hotbar.4:key.keyboard.4:NONE
key_key.hotbar.5:key.keyboard.5:NONE
key_key.hotbar.6:key.keyboard.6:NONE
key_key.hotbar.7:key.keyboard.7:NONE
key_key.hotbar.8:key.keyboard.8:NONE
key_key.hotbar.9:key.keyboard.9:NONE
key_key.worldeditcui.toggle:key.keyboard.n:NONE
key_key.worldeditcui.clear:key.keyboard.j:NONE
key_key.worldeditcui.chunk:key.keyboard.unknown:NONE
key_net.clayborn.accurateblockplacement.togglevanillaplacement:key.keyboard.v:NONE
key_iris.keybind.reload:key.keyboard.r:NONE
key_iris.keybind.toggleShaders:key.keyboard.k:NONE
key_iris.keybind.shaderPackSelection:key.keyboard.o:NONE
key_key.mousewheelie.open_config_screen:key.keyboard.unknown:NONE
key_key.mousewheelie.sort_inventory:key.mouse.middle:NONE
key_key.mousewheelie.scroll_up:key.amecsapi.mouse.scroll.up:NONE
key_key.mousewheelie.scroll_down:key.amecsapi.mouse.scroll.down:NONE
key_key.mousewheelie.pick_tool:key.keyboard.unknown:NONE
key_key.perspectivemod.toggle:key.keyboard.f4:NONE
key_presencefootsteps.settings.key:key.keyboard.unknown:NONE
key_key.craftpresence.config_keycode.name:key.keyboard.unknown:NONE
key_gui.xaero_switch_waypoint_set:key.keyboard.unknown:NONE
key_gui.xaero_instant_waypoint:key.keyboard.keypad.add:NONE
key_gui.xaero_toggle_slime:key.keyboard.unknown:NONE
key_gui.xaero_toggle_grid:key.keyboard.unknown:NONE
key_gui.xaero_toggle_waypoints:key.keyboard.unknown:NONE
key_gui.xaero_toggle_map_waypoints:key.keyboard.unknown:NONE
key_gui.xaero_toggle_map:key.keyboard.backslash:NONE
key_gui.xaero_enlarge_map:key.keyboard.unknown:NONE
key_gui.xaero_waypoints_key:key.keyboard.u:NONE
key_gui.xaero_zoom_in:key.keyboard.equal:NONE
key_gui.xaero_zoom_out:key.keyboard.minus:NONE
key_gui.xaero_new_waypoint:key.keyboard.b:NONE
key_gui.xaero_display_all_sets:key.keyboard.unknown:NONE
key_gui.xaero_toggle_light_overlay:key.keyboard.unknown:NONE
key_gui.xaero_toggle_entity_radar:key.keyboard.unknown:NONE
key_gui.xaero_reverse_entity_radar:key.keyboard.unknown:NONE
key_gui.xaero_minimap_settings:key.keyboard.unknown:NONE
key_gui.xaero_open_map:key.keyboard.m:NONE
key_gui.xaero_open_settings:key.keyboard.unknown:NONE
key_gui.xaero_map_zoom_in:key.keyboard.unknown:NONE
key_gui.xaero_map_zoom_out:key.keyboard.unknown:NONE
key_gui.xaero_quick_confirm:key.keyboard.right.shift:NONE

View file

@ -0,0 +1,93 @@
version:2975
autoJump:false
autoSuggestions:true
chatColors:true
chatLinks:true
chatLinksPrompt:true
enableVsync:false
entityShadows:true
forceUnicodeFont:false
discrete_mouse_scroll:false
invertYMouse:false
realmsNotifications:true
reducedDebugInfo:false
showSubtitles:false
touchscreen:false
fullscreen:false
bobView:true
toggleCrouch:false
toggleSprint:false
darkMojangStudiosBackground:false
hideLightningFlashes:false
mouseSensitivity:0.5
fov:0.0
screenEffectScale:1.0
fovEffectScale:1.0
gamma:0.5
renderDistance:12
simulationDistance:12
entityDistanceScaling:1.0
guiScale:2
particles:0
maxFps:120
difficulty:2
graphicsMode:1
ao:2
prioritizeChunkUpdates:0
biomeBlendRadius:2
renderClouds:true
resourcePacks:["Fabric Mods"]
incompatibleResourcePacks:[]
lastServer:
lang:en_us
soundDevice:
chatVisibility:0
chatOpacity:1.0
chatLineSpacing:0.0
textBackgroundOpacity:0.5
backgroundForChatOnly:true
hideServerAddress:false
advancedItemTooltips:false
pauseOnLostFocus:true
overrideWidth:0
overrideHeight:0
heldItemTooltips:true
chatHeightFocused:1.0
chatDelay:0.0
chatHeightUnfocused:0.44366195797920227
chatScale:1.0
chatWidth:1.0
mipmapLevels:4
useNativeTransport:true
mainHand:right
attackIndicator:1
narrator:0
tutorialStep:none
mouseWheelSensitivity:1.0
rawMouseInput:true
glDebugVerbosity:1
skipMultiplayerWarning:true
skipRealms32bitWarning:false
hideMatchedNames:true
joinedFirstServer:false
hideBundleTutorial:false
syncChunkWrites:true
showAutosaveIndicator:true
allowServerListing:true
soundCategory_master:0.8
soundCategory_music:0.03
soundCategory_record:0.5
soundCategory_weather:0.2
soundCategory_block:1.0
soundCategory_hostile:1.0
soundCategory_neutral:1.0
soundCategory_player:0.3
soundCategory_ambient:0.35
soundCategory_voice:1.0
modelPart_cape:true
modelPart_jacket:true
modelPart_left_sleeve:true
modelPart_right_sleeve:true
modelPart_left_pants_leg:true
modelPart_right_pants_leg:true
modelPart_hat:true