test
This commit is contained in:
10
.idea/.gitignore
generated
vendored
Normal file
10
.idea/.gitignore
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
# 默认忽略的文件
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# 基于编辑器的 HTTP 客户端请求
|
||||
/httpRequests/
|
||||
# 依赖于环境的 Maven 主目录路径
|
||||
/mavenHomeManager.xml
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
||||
9
.idea/JFServer-Client-AutoUpdate.iml
generated
Normal file
9
.idea/JFServer-Client-AutoUpdate.iml
generated
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="JAVA_MODULE" version="4">
|
||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$" />
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
||||
6
.idea/misc.xml
generated
Normal file
6
.idea/misc.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_21" default="true" project-jdk-name="21" project-jdk-type="JavaSDK">
|
||||
<output url="file://$PROJECT_DIR$/out" />
|
||||
</component>
|
||||
</project>
|
||||
8
.idea/modules.xml
generated
Normal file
8
.idea/modules.xml
generated
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/JFServer-Client-AutoUpdate.iml" filepath="$PROJECT_DIR$/.idea/JFServer-Client-AutoUpdate.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
||||
6
.idea/vcs.xml
generated
Normal file
6
.idea/vcs.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
||||
0
overrides/config/ModernUI/bootstrap.properties
Normal file
0
overrides/config/ModernUI/bootstrap.properties
Normal file
209
overrides/config/ModernUI/client.toml
Normal file
209
overrides/config/ModernUI/client.toml
Normal file
@@ -0,0 +1,209 @@
|
||||
#Screen Config
|
||||
[screen]
|
||||
#The duration of GUI background color and blur radius animation in milliseconds. (0 = OFF)
|
||||
# Default: 200
|
||||
# Range: 0 ~ 800
|
||||
animationDuration = 200
|
||||
#The GUI background color in #RRGGBB or #AARRGGBB format. Default value: #99000000
|
||||
#Can be one to four values representing top left, top right, bottom right and bottom left color.
|
||||
#Multiple values produce a gradient effect, whereas one value produce a solid color.
|
||||
#When values is less than 4, the rest of the corner color will be replaced by the last value.
|
||||
backgroundColor = ["#99000000"]
|
||||
#Add Gaussian blur effect to GUI background when opened.
|
||||
#Disable this if you run into a problem or are on low-end PCs
|
||||
blurEffect = true
|
||||
#Whether to add blur effect to GUI screens that have a background and do not originate from Modern UI.
|
||||
additionalBlurEffect = false
|
||||
#Whether to replace Vanilla 3-pass box blur with Modern UI Gaussian blur.
|
||||
#This gives you better quality and performance, recommend setting this to true.
|
||||
overrideVanillaBlur = true
|
||||
#The kernel radius for gaussian convolution blur effect, 0 = disable.
|
||||
#samples per pixel = ((radius * 2) + 1) * 2, sigma = radius / 2.
|
||||
# Default: 7
|
||||
# Range: 0 ~ 18
|
||||
blurRadius = 7
|
||||
#A list of GUI screen superclasses that won't activate blur effect when opened.
|
||||
blurBlacklist = ["net.minecraft.class_408"]
|
||||
#(Beta) Pause the game when inventory (also includes creative mode) opened.
|
||||
inventoryPause = false
|
||||
#Framerate limit on window inactive (out of focus), 0 = no change.
|
||||
# Default: 60
|
||||
# Range: 0 ~ 250
|
||||
framerateInactive = 60
|
||||
#Master volume multiplier on window inactive (out of focus or minimized), 1 = no change.
|
||||
# Default: 0.5
|
||||
# Range: 0.0 ~ 1.0
|
||||
masterVolumeInactive = 0.5
|
||||
#Master volume multiplier on window minimized, 1 = same as master volume inactive.
|
||||
#This value will be no greater than master volume inactive.
|
||||
# Default: 0.25
|
||||
# Range: 0.0 ~ 1.0
|
||||
masterVolumeMinimized = 0.25
|
||||
|
||||
#Tooltip Config
|
||||
[tooltip]
|
||||
#Whether to enable Modern UI enhanced tooltip, or back to vanilla default.
|
||||
enable = true
|
||||
#Whether to use rounded tooltip shapes, or to use vanilla style.
|
||||
roundedShape = true
|
||||
#True to center the tooltip title if rendering an item's tooltip.
|
||||
#Following lines are not affected by this option.
|
||||
centerTitle = true
|
||||
#True to add a title break below the tooltip title line.
|
||||
#TitleBreak and CenterTitle will work/appear at the same time.
|
||||
titleBreak = true
|
||||
#True to exactly position tooltip to pixel grid, smoother movement.
|
||||
exactPositioning = true
|
||||
#The tooltip background color in #RRGGBB or #AARRGGBB format. Default: #E6000000
|
||||
#Can be one to four values representing top left, top right, bottom right and bottom left color.
|
||||
#Multiple values produce a gradient effect, whereas one value produces a solid color.
|
||||
#If less than 4 are provided, repeat the last value.
|
||||
colorFill = ["#E6000000"]
|
||||
#The tooltip border color in #RRGGBB or #AARRGGBB format. Default: #F0AADCF0, #F0DAD0F4, #F0FFC3F7 and #F0DAD0F4
|
||||
#Can be one to four values representing top left, top right, bottom right and bottom left color.
|
||||
#Multiple values produce a gradient effect, whereas one value produces a solid color.
|
||||
#If less than 4 are provided, repeat the last value.
|
||||
colorStroke = ["#FFC2D0D6", "#FFE7DAE5", "#FFCCDAC8", "#FFC8B9AC"]
|
||||
#The cycle time of tooltip border color in milliseconds. (0 = OFF)
|
||||
# Default: 1000
|
||||
# Range: 0 ~ 5000
|
||||
borderCycleTime = 1000
|
||||
#The width of tooltip border, if rounded, in GUI Scale Independent Pixels.
|
||||
# Default: 1.3333333333333333
|
||||
# Range: 0.5 ~ 2.5
|
||||
borderWidth = 1.3333333333333333
|
||||
#The corner radius of tooltip border, if rounded, in GUI Scale Independent Pixels.
|
||||
# Default: 4.0
|
||||
# Range: 0.0 ~ 8.0
|
||||
cornerRadius = 4.0
|
||||
#The shadow radius of tooltip, if rounded, in GUI Scale Independent Pixels.
|
||||
#No impact on performance.
|
||||
# Default: 10.0
|
||||
# Range: 0.0 ~ 32.0
|
||||
shadowRadius = 10.0
|
||||
#The shadow opacity of tooltip, if rounded. No impact on performance.
|
||||
# Default: 0.25
|
||||
# Range: 0.0 ~ 1.0
|
||||
shadowOpacity = 0.25
|
||||
#When true, tooltip border colors adapt to item's name and rarity.
|
||||
adaptiveColors = true
|
||||
#Amount to scroll the tooltip in response to a arrow key pressed event.
|
||||
# Default: 60
|
||||
# Range: 0 ~ 320
|
||||
arrowScrollFactor = 60
|
||||
#Provide line wrapping and optimization for tooltip components.
|
||||
lineWrapping = true
|
||||
|
||||
#General Config
|
||||
[general]
|
||||
#Play a sound effect when the game is loaded.
|
||||
ding = true
|
||||
#Specify a sound event to custom the ding sound effect.
|
||||
#The default is "minecraft:entity.experience_orb.pickup"
|
||||
dingSound = ""
|
||||
#Specify a volume multiplier to the ding sound effect.
|
||||
# Default: 0.25
|
||||
# Range: 0.0 ~ 10.0
|
||||
dingVolume = 0.25
|
||||
#Control the window mode, normal mode does nothing.
|
||||
#Allowed Values: NORMAL, FULLSCREEN, FULLSCREEN_BORDERLESS, MAXIMIZED, MAXIMIZED_BORDERLESS, WINDOWED, WINDOWED_BORDERLESS
|
||||
windowMode = "NORMAL"
|
||||
#Whether to replace vanilla GUI scale button to slider with tips.
|
||||
useNewGuiScale = true
|
||||
#Remove telemetry event of client behaviors.
|
||||
removeTelemetry = false
|
||||
#Allow Slack or Discord shortcodes to replace Unicode Emoji Sequences in chat.
|
||||
emojiShortcodes = true
|
||||
|
||||
#View Config
|
||||
[view]
|
||||
#Force layout direction to RTL, otherwise, the current Locale setting.
|
||||
forceRtl = false
|
||||
#The global font scale used with sp units.
|
||||
# Default: 1.0
|
||||
# Range: 0.5 ~ 2.0
|
||||
fontScale = 1.0
|
||||
#Default scrollbar size in dips.
|
||||
# Default: 4
|
||||
# Range: 0 ~ 1024
|
||||
scrollbarSize = 4
|
||||
#Distance a touch can wander before we think the user is scrolling in dips.
|
||||
# Default: 4
|
||||
# Range: 0 ~ 1024
|
||||
touchSlop = 4
|
||||
#Distance a hover can wander while it is still considered "stationary" in dips.
|
||||
# Default: 4
|
||||
# Range: 0 ~ 1024
|
||||
hoverSlop = 4
|
||||
#Minimum size of the touch target for a scrollbar in dips.
|
||||
# Default: 16
|
||||
# Range: 0 ~ 1024
|
||||
minScrollbarTouchTarget = 16
|
||||
#Minimum velocity to initiate a fling in dips per second.
|
||||
# Default: 50
|
||||
# Range: 0 ~ 32767
|
||||
minimumFlingVelocity = 50
|
||||
#Maximum velocity to initiate a fling in dips per second.
|
||||
# Default: 8000
|
||||
# Range: 0 ~ 32767
|
||||
maximumFlingVelocity = 8000
|
||||
#The coefficient of friction applied to flings/scrolls.
|
||||
# Default: 0.014999999664723873
|
||||
# Range: 0.001 ~ 7.389
|
||||
scrollFriction = 0.014999999664723873
|
||||
#Max distance in dips to overscroll for edge effects.
|
||||
# Default: 0
|
||||
# Range: 0 ~ 1024
|
||||
overscrollDistance = 0
|
||||
#Max distance in dips to overfling for edge effects.
|
||||
# Default: 12
|
||||
# Range: 0 ~ 1024
|
||||
overflingDistance = 12
|
||||
#Amount to scroll in response to a vertical scroll event, in dips per axis value.
|
||||
# Default: 64.0
|
||||
# Range: 0.0 ~ 1024.0
|
||||
verticalScrollFactor = 64.0
|
||||
#Amount to scroll in response to a horizontal scroll event, in dips per axis value.
|
||||
# Default: 64.0
|
||||
# Range: 0.0 ~ 1024.0
|
||||
horizontalScrollFactor = 64.0
|
||||
#The duration in milliseconds before a hover event causes a tooltip to be shown.
|
||||
# Default: 500
|
||||
# Range: 0 ~ 1200
|
||||
hoverTooltipShowTimeout = 500
|
||||
#The duration in milliseconds before mouse inactivity causes a tooltip to be hidden.
|
||||
# Default: 30000
|
||||
# Range: 3000 ~ 120000
|
||||
hoverTooltipHideTimeout = 30000
|
||||
|
||||
#Font Config
|
||||
[font]
|
||||
#The first font family to use. See fallbackFontFamilyList
|
||||
firstFontFamily = "Inter Frozen Medium"
|
||||
#A set of fallback font families to determine the typeface to use.
|
||||
#The order is first > fallbacks. TrueType & OpenType are supported.
|
||||
#Each element can be one of the following two cases:
|
||||
#1) Name of registered font family, for instance: Segoe UI
|
||||
#2) Path of font files on your PC, for instance: /usr/shared/fonts/x.otf
|
||||
#Registered font families include:
|
||||
#1) OS builtin fonts.
|
||||
#2) Font files in fontRegistrationList.
|
||||
#3) Font files in '/resourcepacks' directory.
|
||||
#4) Font files under 'modernui:font' in resource packs.
|
||||
#Note that for TTC/OTC font, you should register it and select one of font families.
|
||||
#Otherwise, only the first font family from the TrueType/OpenType Collection will be used.
|
||||
#This is only read once when the game is loaded, you can reload via in-game GUI.
|
||||
fallbackFontFamilyList = ["Source Han Sans CN Medium", "Noto Sans", "Segoe UI Variable", "Segoe UI", "San Francisco", "Open Sans", "SimHei", "STHeiti", "Segoe UI Symbol", "mui-i18n-compat"]
|
||||
#A set of additional font files (or directories) to register.
|
||||
#For TrueType/OpenType Collections, all contained font families will be registered.
|
||||
#Registered fonts can be referenced in Modern UI and Minecraft (Modern Text Engine).
|
||||
#For example, "E:/Fonts" means all font files in that directory will be registered.
|
||||
#System requires random access to these files, you should not remove them while running.
|
||||
#This is only read once when the game is loaded, i.e. registration.
|
||||
fontRegistrationList = []
|
||||
#Whether to use Google Noto Color Emoji, otherwise grayscale emoji (faster).
|
||||
#See Unicode 15.0 specification for details on how this affects text layout.
|
||||
useColorEmoji = true
|
||||
#When enabled, text layout uses fractional metrics with no font hinting and applies sub-pixel positioning.
|
||||
#When disabled, text layout uses integer metrics with full font hinting.
|
||||
linearMetrics = true
|
||||
7
overrides/config/ModernUI/common.toml
Normal file
7
overrides/config/ModernUI/common.toml
Normal file
@@ -0,0 +1,7 @@
|
||||
#Developer Config
|
||||
[developer]
|
||||
#Whether to enable developer mode.
|
||||
enableDeveloperMode = false
|
||||
# Default: 0
|
||||
# Range: > -2147483648
|
||||
oneTimeEvents = 0
|
||||
107
overrides/config/ModernUI/text.toml
Normal file
107
overrides/config/ModernUI/text.toml
Normal file
@@ -0,0 +1,107 @@
|
||||
#Text Engine Config
|
||||
[text]
|
||||
#Allow text renderer to drop shadow, setting to false can improve performance.
|
||||
allowShadow = true
|
||||
#Fix resolution level at 2. When the GUI scale increases, the resolution level remains.
|
||||
#Then GUI scale should be even numbers (2, 4, 6...), based on Minecraft GUI system.
|
||||
#If your fonts are not bitmap fonts, then you should keep this setting false.
|
||||
fixedResolution = false
|
||||
#Control base font size, in GUI scaled pixels. The default and vanilla value is 8.
|
||||
#For bitmap fonts, 8 represents a glyph size of 8x or 16x if fixed resolution.
|
||||
#This option only applies to TrueType fonts.
|
||||
# Default: 8.0
|
||||
# Range: 6.5 ~ 9.5
|
||||
baseFontSize = 8.0
|
||||
#Control vertical baseline for vanilla text layout, in GUI scaled pixels.
|
||||
#The vanilla default value is 7.
|
||||
# Default: 7.0
|
||||
# Range: 4.0 ~ 10.0
|
||||
baselineShift = 7.0
|
||||
#Control the text shadow offset for vanilla text rendering, in GUI scaled pixels.
|
||||
# Default: 0.5
|
||||
# Range: 0.20000000298023224 ~ 2.0
|
||||
shadowOffset = 0.5
|
||||
#Control the text outline offset for vanilla text rendering, in GUI scaled pixels.
|
||||
# Default: 0.5
|
||||
# Range: 0.20000000298023224 ~ 2.0
|
||||
outlineOffset = 0.5
|
||||
#Control the horizontal offset for bitmap fonts, in GUI scaled pixels.
|
||||
# Default: 0.5
|
||||
# Range: 0.0 ~ 1.0
|
||||
bitmapOffset = 0.5
|
||||
#Set the recycle time of layout cache in seconds, using least recently used algorithm.
|
||||
# Default: 6
|
||||
# Range: 2 ~ 15
|
||||
cacheLifespan = 6
|
||||
#The bidirectional text heuristic algorithm. The default is FirstStrong (Locale).
|
||||
#This will affect which BiDi algorithm to use during text layout.
|
||||
#Allowed Values: FIRST_STRONG, ANY_RTL, LTR, RTL, LOCALE, FIRST_STRONG_LTR, FIRST_STRONG_RTL
|
||||
textDirection = "FIRST_STRONG"
|
||||
#Whether to use Modern UI text rendering pipeline in 3D world.
|
||||
#Disabling this means that SDF text and rendering optimization are no longer effective.
|
||||
#But text rendering can be compatible with OptiFine Shaders and Iris Shaders.
|
||||
#This does not affect text rendering in GUI.
|
||||
#This option only applies to TrueType fonts.
|
||||
useTextShadersInWorld = true
|
||||
#For "minecraft:default" font, should we keep some glyph providers of them?
|
||||
#Ignore All: Only use Modern UI typeface list.
|
||||
#Keep ASCII: Include minecraft:font/ascii.png, minecraft:font/accented.png, minecraft:font/nonlatin_european.png
|
||||
#Keep Other: Include providers other than ASCII and Unicode font.
|
||||
#Keep All: Include all except Unicode font.
|
||||
#Only Include: Only include providers that specified by defaultFontRuleSet.
|
||||
#Only Exclude: Only exclude providers that specified by defaultFontRuleSet.
|
||||
#Allowed Values: IGNORE_ALL, KEEP_ASCII, KEEP_OTHER, KEEP_ALL, ONLY_INCLUDE, ONLY_EXCLUDE
|
||||
defaultFontBehavior = "ONLY_EXCLUDE"
|
||||
#Used when defaultFontBehavior is either ONLY_INCLUDE or ONLY_EXCLUDE.
|
||||
#This specifies a set of regular expressions to match the glyph provider name.
|
||||
#For bitmap providers, this is the texture path without 'textures/'.
|
||||
#For TTF providers, this is the TTF file path without 'font/'.
|
||||
#For space providers, this is "font_name / minecraft:space",
|
||||
#where font_name is font definition path without 'font/'.
|
||||
defaultFontRuleSet = ["^minecraft:font\\/(nonlatin_european|accented|ascii|element_ideographs|cjk_punctuations|ellipsis|2em_dash)\\.png$", "^minecraft:include\\/space \\/ minecraft:space$", "^minecraft:font\\/(mcsans|emoji)_05_00\\d.png$"]
|
||||
#Whether to use text component object as hash key to lookup in layout cache.
|
||||
#If you find that Modern UI text rendering is not compatible with some mods,
|
||||
#you can disable this option for compatibility, but this will decrease performance a bit.
|
||||
#Modern UI will use another cache strategy if this is disabled.
|
||||
useComponentCache = true
|
||||
#Allow text layout to be computed from background threads (not cached).
|
||||
#Otherwise, block the current thread and wait for main thread.
|
||||
allowAsyncLayout = true
|
||||
#See CSS line-break property, https://developer.mozilla.org/en-US/docs/Web/CSS/line-break
|
||||
#Allowed Values: AUTO, LOOSE, NORMAL, STRICT
|
||||
lineBreakStyle = "AUTO"
|
||||
#Allowed Values: AUTO, PHRASE
|
||||
lineBreakWordStyle = "AUTO"
|
||||
#When enabled, Modern UI will compute texel density in device-space to determine whether to use SDF text or bilinear sampling.
|
||||
#This feature requires GLSL 400 or has no effect.
|
||||
#This generally decreases performance but provides better rendering quality.
|
||||
#This option only applies to TrueType fonts. May not be compatible with OptiFine.
|
||||
smartSDFShaders = true
|
||||
#When rendering in 2D, this option allows Modern UI to exactly compute font size in device-space from the current coordinate transform matrix.
|
||||
#This provides perfect text rendering for scaling-down texts in vanilla, but may increase GPU memory usage.
|
||||
#When disabled, Modern UI will use SDF text rendering if appropriate.
|
||||
#This option only applies to TrueType fonts.
|
||||
computeDeviceFontSize = true
|
||||
#When enabled, Modern UI will use SDF text rendering if appropriate.
|
||||
#Otherwise, it uses nearest-neighbor or bilinear sampling based on texel density.
|
||||
#This option only applies to TrueType fonts.
|
||||
allowSDFTextIn2D = true
|
||||
#When enabled, the outline of the experience level text will be tweaked.
|
||||
tweakExperienceText = true
|
||||
#Control the anti-aliasing of raw glyph rasterization.
|
||||
antiAliasing = true
|
||||
#When enabled, text layout uses fractional metrics with no font hinting.
|
||||
#When disabled, text layout uses integer metrics with full font hinting.
|
||||
#Disable if on low-res monitor; enable for linear text.
|
||||
linearMetrics = false
|
||||
#Control the minimum pixel density for SDF text and text in 3D world rendering.
|
||||
#This value will be no less than current GUI scale.
|
||||
#Recommend setting a higher value on high-res monitor and powerful PC hardware.
|
||||
# Default: 4
|
||||
# Range: 4 ~ 10
|
||||
minPixelDensityForSDF = 4
|
||||
#Enable linear sampling for A8 font atlases with mipmaps, mag filter will be always
|
||||
#NEAREST. We prefer computeDeviceFontSize and allowSDFTextIn2D, then setting this to
|
||||
#false can improve performance. If either of the above two is false or Shaders are active,
|
||||
#then setting this to true can improve readability.
|
||||
linearSamplingA8Atlas = false
|
||||
8
overrides/config/MouseTweaks.cfg
Normal file
8
overrides/config/MouseTweaks.cfg
Normal file
@@ -0,0 +1,8 @@
|
||||
RMBTweak=1
|
||||
LMBTweakWithItem=1
|
||||
LMBTweakWithoutItem=1
|
||||
WheelTweak=1
|
||||
WheelSearchOrder=1
|
||||
WheelScrollDirection=0
|
||||
ScrollItemScaling=0
|
||||
Debug=0
|
||||
5
overrides/config/allmusic.json
Normal file
5
overrides/config/allmusic.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"picSize": 200,
|
||||
"queueSize": 100,
|
||||
"exitSize": 50
|
||||
}
|
||||
22
overrides/config/appleskin.json5
Normal file
22
overrides/config/appleskin.json5
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
// If true, shows the hunger and saturation values of food in its tooltip while holding SHIFT
|
||||
"showFoodValuesInTooltip": true,
|
||||
// If true, shows the hunger and saturation values of food in its tooltip automatically (without needing to hold SHIFT)
|
||||
"showFoodValuesInTooltipAlways": true,
|
||||
// If true, shows your current saturation level overlayed on the hunger bar
|
||||
"showSaturationHudOverlay": true,
|
||||
// If true, shows the hunger (and saturation if showSaturationHudOverlay is true) that would be restored by food you are currently holding
|
||||
"showFoodValuesHudOverlay": true,
|
||||
// If true, enables the hunger/saturation/health overlays for food in your off-hand
|
||||
"showFoodValuesHudOverlayWhenOffhand": true,
|
||||
// If true, shows your food exhaustion as a progress bar behind the hunger bar
|
||||
"showFoodExhaustionHudUnderlay": true,
|
||||
// If true, shows estimated health restored by food on the health bar
|
||||
"showFoodHealthHudOverlay": true,
|
||||
// If true, shows your hunger, saturation, and exhaustion level in Debug Screen
|
||||
"showFoodDebugInfo": true,
|
||||
// If true, health/hunger overlay will shake to match Minecraft's icon animations
|
||||
"showVanillaAnimationsOverlay": true,
|
||||
// Alpha value of the flashing icons at their most visible point (1.0 = fully opaque, 0.0 = fully transparent)
|
||||
"maxHudOverlayFlashAlpha": 0.6499999761581421
|
||||
}
|
||||
29
overrides/config/authme.jsonc
Normal file
29
overrides/config/authme.jsonc
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
// The version of the config file. Do not change this unless you know what you are doing.
|
||||
"rconfig:version": 0,
|
||||
"authButton": {
|
||||
// Type: Integer
|
||||
"x": 6,
|
||||
// Type: Integer
|
||||
"y": 6,
|
||||
"draggable": true
|
||||
},
|
||||
"methods": {
|
||||
"microsoft": {
|
||||
// Valid Values: DEFAULT, SELECT_ACCOUNT, LOGIN, NONE, CONSENT
|
||||
"prompt": "DEFAULT",
|
||||
// Type: Integer
|
||||
"port": 25585,
|
||||
"clientId": "e16699bb-2aa8-46da-b5e3-45cbcce29091",
|
||||
"authorizeUrl": "https://login.microsoftonline.com/consumers/oauth2/v2.0/authorize",
|
||||
"tokenUrl": "https://login.microsoftonline.com/consumers/oauth2/v2.0/token",
|
||||
"xboxAuthUrl": "https://user.auth.xboxlive.com/user/authenticate",
|
||||
"xboxXstsUrl": "https://xsts.auth.xboxlive.com/xsts/authorize",
|
||||
"mcAuthUrl": "https://api.minecraftservices.com/authentication/login_with_xbox",
|
||||
"mcProfileUrl": "https://api.minecraftservices.com/minecraft/profile"
|
||||
},
|
||||
"offline": {
|
||||
"lastUsername": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
8
overrides/config/autologincommand.json5
Normal file
8
overrides/config/autologincommand.json5
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"defaultAddressEntry": {
|
||||
"list": [],
|
||||
"reconnect": -1,
|
||||
"period": 1000
|
||||
},
|
||||
"list": []
|
||||
}
|
||||
5
overrides/config/continuity.json
Normal file
5
overrides/config/continuity.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"connected_textures": true,
|
||||
"emissive_textures": true,
|
||||
"custom_block_layers": true
|
||||
}
|
||||
18
overrides/config/durability-viewer.json
Normal file
18
overrides/config/durability-viewer.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"Settings": {
|
||||
"ArmorAroundHotbar": true,
|
||||
"HUDCorner": "Bottom-Right",
|
||||
"EffectDuration": true,
|
||||
"HideDamageOverPercent": 100,
|
||||
"SoundBelowDurability": 100,
|
||||
"SoundBelowPercent": 10,
|
||||
"Percentages": false,
|
||||
"SetWindowTitle": true,
|
||||
"ShowAllTrinkets": true,
|
||||
"PercentToShowDamage": 80,
|
||||
"ShowFreeInventorySlots": true,
|
||||
"TooltipColor": "#0054FB54",
|
||||
"WarningMode": "Sound"
|
||||
},
|
||||
"config_version": 1
|
||||
}
|
||||
9
overrides/config/fabric/indigo-renderer.properties
Normal file
9
overrides/config/fabric/indigo-renderer.properties
Normal file
@@ -0,0 +1,9 @@
|
||||
#Indigo properties file
|
||||
#Mon Dec 29 16:48:54 CST 2025
|
||||
always-tesselate-blocks=auto
|
||||
ambient-occlusion-mode=hybrid
|
||||
debug-compare-lighting=auto
|
||||
fix-exterior-vertex-lighting=auto
|
||||
fix-luminous-block-ambient-occlusion=auto
|
||||
fix-mean-light-calculation=auto
|
||||
fix-smooth-lighting-offset=auto
|
||||
6
overrides/config/forgeconfigapiport.toml
Normal file
6
overrides/config/forgeconfigapiport.toml
Normal file
@@ -0,0 +1,6 @@
|
||||
#Disables File Watcher. Used to automatically update config if its file has been modified.
|
||||
disableConfigWatcher = false
|
||||
#A config option mainly for developers. Logs out configuration values that do not have translations when running a client in a development environment.
|
||||
logUntranslatedConfigurationWarnings = true
|
||||
#Path to load default configs from, intended for setting global server configs for newly created worlds, but also works when recreating client and common configs.
|
||||
defaultConfigsPath = "defaultconfigs"
|
||||
29
overrides/config/imblocker.json
Normal file
29
overrides/config/imblocker.json
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"basicSettings": {
|
||||
"screenWhitelist": [
|
||||
"com.simibubi.create.content.equipment.clipboard.ClipboardScreen",
|
||||
"net.mehvahdjukaar.supplementaries.client.screens.TextHolderEditScreen",
|
||||
"net.minecraft.class_7743"
|
||||
],
|
||||
"enableScreenRecovering": false,
|
||||
"recoveredScreens": [],
|
||||
"englishStateImpl": "CONVERSION_STATUS",
|
||||
"primaryEnglishState": "CJK"
|
||||
},
|
||||
"advanceSettings": {
|
||||
"enableCharSimulation": false
|
||||
},
|
||||
"windowsCompatibilitySettings": {
|
||||
"enableConversionStatusApi": true,
|
||||
"enableCursorPositionTracking": true,
|
||||
"enableCompositionFontTweaks": true
|
||||
},
|
||||
"linuxCompatibilitySettings": {
|
||||
"enableKeyboardPatch": true,
|
||||
"ibusOnArgName": "libpinyin",
|
||||
"ibusOffArgName": "xkb:us::eng",
|
||||
"fcitx5OnArgName": "-o",
|
||||
"fcitx5OffArgName": "-c",
|
||||
"fcitx5OnStateName": "2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"globalBookmarks": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
},
|
||||
"globalBookmarks1": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
},
|
||||
"globalBookmarks2": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"globalBookmarks": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
},
|
||||
"globalBookmarks1": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
},
|
||||
"globalBookmarks2": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"globalBookmarks": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
},
|
||||
"globalBookmarks1": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
},
|
||||
"globalBookmarks2": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"package.name.className": {
|
||||
"ignore": false,
|
||||
"playerSideOnly": false,
|
||||
"force": false,
|
||||
"buttonHints": {
|
||||
"SORT": {
|
||||
"horizontalOffset": 0,
|
||||
"top": 0,
|
||||
"bottom": 0
|
||||
},
|
||||
"SORT_COLUMNS": {
|
||||
"horizontalOffset": 0,
|
||||
"top": 0,
|
||||
"bottom": 0
|
||||
},
|
||||
"SORT_ROWS": {
|
||||
"horizontalOffset": 0,
|
||||
"top": 0,
|
||||
"bottom": 0
|
||||
},
|
||||
"MOVE_TO_CONTAINER": {
|
||||
"horizontalOffset": 0,
|
||||
"top": 0,
|
||||
"bottom": 0
|
||||
},
|
||||
"MOVE_TO_PLAYER": {
|
||||
"horizontalOffset": 0,
|
||||
"top": 0,
|
||||
"bottom": 0
|
||||
},
|
||||
"CONTINUOUS_CRAFTING": {
|
||||
"horizontalOffset": 0,
|
||||
"top": 0,
|
||||
"bottom": 0
|
||||
},
|
||||
"PROFILE_SELECTOR": {
|
||||
"horizontalOffset": 0,
|
||||
"top": 0,
|
||||
"bottom": 0,
|
||||
"hide": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"another.package.name.className": {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"ModSettings": {
|
||||
"first_run": false
|
||||
},
|
||||
"GuiSettings": {
|
||||
"continuous_crafting_saved_value": false
|
||||
},
|
||||
"AutoRefillSettings": {
|
||||
"auto_refill_enable_per_slot_config": {
|
||||
"value": false
|
||||
},
|
||||
"auto_refill_enable_indicator_icons": {
|
||||
"value": false
|
||||
},
|
||||
"auto_refill_enable_horbar_indicator_icons": {
|
||||
"value": false
|
||||
},
|
||||
"visual_durability_notification": {
|
||||
"value": false
|
||||
},
|
||||
"audio_durability_notification": {
|
||||
"value": false
|
||||
},
|
||||
"visual_replace_success_notification": {
|
||||
"value": false
|
||||
},
|
||||
"audio_replace_success_notification": {
|
||||
"value": false
|
||||
},
|
||||
"visual_replace_failed_notification": {
|
||||
"value": false
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"globalBookmarks": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
},
|
||||
"globalBookmarks1": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
},
|
||||
"globalBookmarks2": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"globalBookmarks": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
},
|
||||
"globalBookmarks1": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
},
|
||||
"globalBookmarks2": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"globalBookmarks": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
},
|
||||
"globalBookmarks1": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
},
|
||||
"globalBookmarks2": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"globalBookmarks": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
},
|
||||
"globalBookmarks1": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
},
|
||||
"globalBookmarks2": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"globalBookmarks": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
},
|
||||
"globalBookmarks1": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
},
|
||||
"globalBookmarks2": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"globalBookmarks": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
},
|
||||
"globalBookmarks1": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
},
|
||||
"globalBookmarks2": {
|
||||
"armorer": [],
|
||||
"butcher": [],
|
||||
"cartographer": [],
|
||||
"cleric": [],
|
||||
"farmer": [],
|
||||
"fisherman": [],
|
||||
"fletcher": [],
|
||||
"leatherworker": [],
|
||||
"librarian": [],
|
||||
"mason": [],
|
||||
"shepherd": [],
|
||||
"toolsmith": [],
|
||||
"weaponsmith": [],
|
||||
"nitwit": [],
|
||||
"none": []
|
||||
}
|
||||
}
|
||||
1
overrides/config/iris-excluded.json
Normal file
1
overrides/config/iris-excluded.json
Normal file
@@ -0,0 +1 @@
|
||||
{"excluded":["put:valuesHere"]}
|
||||
9
overrides/config/iris.properties
Normal file
9
overrides/config/iris.properties
Normal file
@@ -0,0 +1,9 @@
|
||||
#This file stores configuration options for Iris, such as the currently active shaderpack
|
||||
#Mon Dec 29 16:48:59 CST 2025
|
||||
allowUnknownShaders=false
|
||||
colorSpace=SRGB
|
||||
disableUpdateMessage=false
|
||||
enableDebugOptions=false
|
||||
enableShaders=false
|
||||
maxShadowRenderDistance=32
|
||||
shaderPack=BSL_v10.1p1.zip
|
||||
174
overrides/config/itemscroller.json
Normal file
174
overrides/config/itemscroller.json
Normal file
@@ -0,0 +1,174 @@
|
||||
{
|
||||
"Generic": {
|
||||
"carpetCtrlQCraftingEnabledOnServer": false,
|
||||
"clientCraftingFixOn1.12": true,
|
||||
"craftingRenderRecipeItems": true,
|
||||
"debugMessages": false,
|
||||
"massCraftInhibitMidUpdates": true,
|
||||
"massCraftInterval": 2,
|
||||
"massCraftIterations": 36,
|
||||
"massCraftSwapsOnly": false,
|
||||
"massCraftUseRecipeBook": true,
|
||||
"massCraftHold": false,
|
||||
"modMainToggle": true,
|
||||
"packetRateLimit": 4,
|
||||
"rateLimitClickPackets": false,
|
||||
"craftingRecipesSaveToFile": true,
|
||||
"craftingRecipesSaveFileIsGlobal": false,
|
||||
"reverseScrollDirectionSingle": false,
|
||||
"reverseScrollDirectionStacks": false,
|
||||
"useSlotPositionAwareScrollDirection": false,
|
||||
"useRecipeCaching": true,
|
||||
"villagerTradeUseGlobalFavorites": true,
|
||||
"villagerTradeListRememberScrollPosition": true,
|
||||
"sortInventoryToggle": false,
|
||||
"sortAssumeEmptyBoxStacks": false,
|
||||
"sortShulkerBoxesAtEnd": true,
|
||||
"sortShulkerBoxesInverted": false,
|
||||
"sortBundlesAtEnd": true,
|
||||
"sortBundlesInverted": false,
|
||||
"sortTopPriorityInventory": [
|
||||
"minecraft:diamond_sword",
|
||||
"minecraft:diamond_pickaxe",
|
||||
"minecraft:diamond_axe",
|
||||
"minecraft:diamond_shovel",
|
||||
"minecraft:diamond_hoe",
|
||||
"minecraft:netherite_sword",
|
||||
"minecraft:netherite_pickaxe",
|
||||
"minecraft:netherite_axe",
|
||||
"minecraft:netherite_shovel",
|
||||
"minecraft:netherite_hoe"
|
||||
],
|
||||
"sortBottomPriorityInventory": [],
|
||||
"sortMethodDefault": "category_name",
|
||||
"sortCategoryOrder": [
|
||||
"building_blocks",
|
||||
"colored_blocks",
|
||||
"natural_blocks",
|
||||
"functional_blocks",
|
||||
"redstone_blocks",
|
||||
"tools_and_utilities",
|
||||
"combat",
|
||||
"food_and_drinks",
|
||||
"ingredients",
|
||||
"spawn_eggs",
|
||||
"op_blocks",
|
||||
"other"
|
||||
]
|
||||
},
|
||||
"Hotkeys": {
|
||||
"openConfigGui": {
|
||||
"keys": "I,C"
|
||||
},
|
||||
"toggleModOnOff": {
|
||||
"keys": ""
|
||||
},
|
||||
"craftEverything": {
|
||||
"keys": "LEFT_CONTROL,C"
|
||||
},
|
||||
"dropAllMatching": {
|
||||
"keys": "LEFT_CONTROL,LEFT_SHIFT,Q"
|
||||
},
|
||||
"massCraft": {
|
||||
"keys": "LEFT_CONTROL,LEFT_ALT,C"
|
||||
},
|
||||
"massCraftToggle": {
|
||||
"keys": ""
|
||||
},
|
||||
"moveCraftResults": {
|
||||
"keys": "LEFT_CONTROL,M"
|
||||
},
|
||||
"recipeView": {
|
||||
"keys": "A"
|
||||
},
|
||||
"slotDebug": {
|
||||
"keys": "LEFT_CONTROL,LEFT_ALT,LEFT_SHIFT,I"
|
||||
},
|
||||
"storeRecipe": {
|
||||
"keys": "BUTTON_3"
|
||||
},
|
||||
"throwCraftResults": {
|
||||
"keys": "LEFT_CONTROL,T"
|
||||
},
|
||||
"villagerTradeFavorites": {
|
||||
"keys": ""
|
||||
},
|
||||
"modifierMoveEverything": {
|
||||
"keys": "LEFT_ALT,LEFT_SHIFT"
|
||||
},
|
||||
"modifierMoveMatching": {
|
||||
"keys": "LEFT_ALT"
|
||||
},
|
||||
"modifierMoveStack": {
|
||||
"keys": "LEFT_SHIFT"
|
||||
},
|
||||
"modifierToggleVillagerGlobalFavorite": {
|
||||
"keys": "LEFT_SHIFT"
|
||||
},
|
||||
"keyDragMoveStacks": {
|
||||
"keys": "LEFT_SHIFT,BUTTON_1"
|
||||
},
|
||||
"keyDragMoveLeaveOne": {
|
||||
"keys": "LEFT_SHIFT,BUTTON_2"
|
||||
},
|
||||
"keyDragMoveMatching": {
|
||||
"keys": "LEFT_ALT,BUTTON_1"
|
||||
},
|
||||
"keyDragMoveOne": {
|
||||
"keys": "LEFT_CONTROL,BUTTON_1"
|
||||
},
|
||||
"keyDragDropLeaveOne": {
|
||||
"keys": "LEFT_SHIFT,Q,BUTTON_2"
|
||||
},
|
||||
"keyDragDropSingle": {
|
||||
"keys": "Q,BUTTON_1"
|
||||
},
|
||||
"keyDragDropStacks": {
|
||||
"keys": "LEFT_SHIFT,Q,BUTTON_1"
|
||||
},
|
||||
"keyMoveEverything": {
|
||||
"keys": "LEFT_ALT,LEFT_SHIFT,BUTTON_1"
|
||||
},
|
||||
"wsMoveDownLeaveOne": {
|
||||
"keys": "S,BUTTON_2"
|
||||
},
|
||||
"wsMoveDownMatching": {
|
||||
"keys": "LEFT_ALT,S,BUTTON_1"
|
||||
},
|
||||
"wsMoveDownSingle": {
|
||||
"keys": "S,BUTTON_1"
|
||||
},
|
||||
"wsMoveDownStacks": {
|
||||
"keys": "LEFT_SHIFT,S,BUTTON_1"
|
||||
},
|
||||
"wsMoveUpLeaveOne": {
|
||||
"keys": "W,BUTTON_2"
|
||||
},
|
||||
"wsMoveUpMatching": {
|
||||
"keys": "LEFT_ALT,W,BUTTON_1"
|
||||
},
|
||||
"wsMoveUpSingle": {
|
||||
"keys": "W,BUTTON_1"
|
||||
},
|
||||
"wsMoveUpStacks": {
|
||||
"keys": "LEFT_SHIFT,W,BUTTON_1"
|
||||
},
|
||||
"sortInventory": {
|
||||
"keys": "R"
|
||||
}
|
||||
},
|
||||
"Toggles": {
|
||||
"enableCraftingFeatures": true,
|
||||
"enableDropkeyDropMatching": true,
|
||||
"enableRightClickCraftingOneStack": true,
|
||||
"enableScrollingEverything": true,
|
||||
"enableScrollingMatchingStacks": true,
|
||||
"enableScrollingSingle": true,
|
||||
"enableScrollingStacks": true,
|
||||
"enableScrollingStacksFallback": true,
|
||||
"enableScrollingVillager": true,
|
||||
"enableShiftDropItems": true,
|
||||
"enableShiftPlaceItems": true,
|
||||
"enableVillagerTradeFeatures": true
|
||||
}
|
||||
}
|
||||
179
overrides/config/lambdynlights.toml
Normal file
179
overrides/config/lambdynlights.toml
Normal file
@@ -0,0 +1,179 @@
|
||||
# LambDynamicLights configuration.
|
||||
# The dynamic lights mode
|
||||
mode = "fancy"
|
||||
|
||||
# Light sources settings.
|
||||
[light_sources]
|
||||
# Enables water-sensitive light sources check. This means that water-sensitive items will not light up when submerged in water.
|
||||
water_sensitive_check = true
|
||||
# Enables dynamic lighting of beacon or end gateway beams.
|
||||
beam = true
|
||||
# Enable entities light source.
|
||||
entities = true
|
||||
# Enable first-person player light source.
|
||||
self = true
|
||||
# TNT lighting mode. May be off, simple or fancy.
|
||||
tnt = "fancy"
|
||||
# Creeper lighting mode. May be off, simple or fancy.
|
||||
creeper = "fancy"
|
||||
# Enables dynamic lighting of Guardian's lasers. This also can be toggled off by disabling Guardian dynamic lighting.
|
||||
guardian_laser = true
|
||||
|
||||
[light_sources.settings.entities.minecraft]
|
||||
glow_item_frame = false
|
||||
|
||||
[debug]
|
||||
active_dynamic_lighting_cells = false
|
||||
display_dynamic_lighting_chunk_rebuild = false
|
||||
display_behavior_bounding_box = false
|
||||
|
||||
[entity.minecraft]
|
||||
zombie_horse = true
|
||||
pale_oak_boat = true
|
||||
axolotl = true
|
||||
zoglin = true
|
||||
egg = true
|
||||
spawner_minecart = true
|
||||
allay = true
|
||||
jungle_chest_boat = true
|
||||
llama = true
|
||||
mule = true
|
||||
bat = true
|
||||
husk = true
|
||||
experience_bottle = true
|
||||
camel = true
|
||||
rabbit = true
|
||||
firework_rocket = true
|
||||
silverfish = true
|
||||
giant = true
|
||||
drowned = true
|
||||
creaking = true
|
||||
item = true
|
||||
oak_chest_boat = true
|
||||
goat = true
|
||||
vindicator = true
|
||||
horse = true
|
||||
birch_boat = true
|
||||
minecart = true
|
||||
spectral_arrow = true
|
||||
mooshroom = true
|
||||
oak_boat = true
|
||||
llama_spit = true
|
||||
glow_item_frame = true
|
||||
tnt = true
|
||||
snowball = true
|
||||
parrot = true
|
||||
creeper = true
|
||||
lightning_bolt = true
|
||||
tadpole = true
|
||||
ravager = true
|
||||
evoker_fangs = true
|
||||
tropical_fish = true
|
||||
chest_minecart = true
|
||||
slime = true
|
||||
pillager = true
|
||||
dark_oak_chest_boat = true
|
||||
area_effect_cloud = true
|
||||
blaze = true
|
||||
piglin = true
|
||||
end_crystal = true
|
||||
endermite = true
|
||||
zombie = true
|
||||
ender_pearl = true
|
||||
item_display = true
|
||||
breeze_wind_charge = true
|
||||
guardian = true
|
||||
fireball = true
|
||||
illusioner = true
|
||||
wither_skull = true
|
||||
eye_of_ender = true
|
||||
wolf = true
|
||||
tnt_minecart = true
|
||||
zombie_villager = true
|
||||
block_display = true
|
||||
elder_guardian = true
|
||||
cherry_chest_boat = true
|
||||
acacia_chest_boat = true
|
||||
small_fireball = true
|
||||
strider = true
|
||||
cave_spider = true
|
||||
witch = true
|
||||
snow_golem = true
|
||||
cod = true
|
||||
spider = true
|
||||
command_block_minecart = true
|
||||
panda = true
|
||||
bee = true
|
||||
arrow = true
|
||||
cow = true
|
||||
birch_chest_boat = true
|
||||
magma_cube = true
|
||||
pig = true
|
||||
spruce_boat = true
|
||||
skeleton = true
|
||||
frog = true
|
||||
hoglin = true
|
||||
armadillo = true
|
||||
armor_stand = true
|
||||
experience_orb = true
|
||||
dolphin = true
|
||||
stray = true
|
||||
jungle_boat = true
|
||||
turtle = true
|
||||
shulker = true
|
||||
salmon = true
|
||||
wither_skeleton = true
|
||||
vex = true
|
||||
wandering_trader = true
|
||||
piglin_brute = true
|
||||
breeze = true
|
||||
ocelot = true
|
||||
furnace_minecart = true
|
||||
pale_oak_chest_boat = true
|
||||
acacia_boat = true
|
||||
mangrove_boat = true
|
||||
item_frame = true
|
||||
phantom = true
|
||||
ender_dragon = true
|
||||
leash_knot = true
|
||||
evoker = true
|
||||
marker = true
|
||||
glow_squid = true
|
||||
warden = true
|
||||
squid = true
|
||||
shulker_bullet = true
|
||||
enderman = true
|
||||
dragon_fireball = true
|
||||
chicken = true
|
||||
sniffer = true
|
||||
dark_oak_boat = true
|
||||
trader_llama = true
|
||||
donkey = true
|
||||
bogged = true
|
||||
bamboo_chest_raft = true
|
||||
bamboo_raft = true
|
||||
fox = true
|
||||
mangrove_chest_boat = true
|
||||
cherry_boat = true
|
||||
iron_golem = true
|
||||
zombified_piglin = true
|
||||
cat = true
|
||||
wind_charge = true
|
||||
ghast = true
|
||||
sheep = true
|
||||
player = true
|
||||
pufferfish = true
|
||||
potion = true
|
||||
trident = true
|
||||
villager = true
|
||||
ominous_item_spawner = true
|
||||
skeleton_horse = true
|
||||
fishing_bobber = true
|
||||
text_display = true
|
||||
polar_bear = true
|
||||
hopper_minecart = true
|
||||
falling_block = true
|
||||
painting = true
|
||||
interaction = true
|
||||
wither = true
|
||||
spruce_chest_boat = true
|
||||
6
overrides/config/lithium.properties
Normal file
6
overrides/config/lithium.properties
Normal file
@@ -0,0 +1,6 @@
|
||||
# This is the configuration file for Lithium.
|
||||
#
|
||||
# You can find information on editing this file and all the available options here:
|
||||
# https://github.com/CaffeineMC/lithium-fabric/wiki/Configuration-File
|
||||
#
|
||||
# By default, this file will be empty except for this notice.
|
||||
34
overrides/config/malilib.json
Normal file
34
overrides/config/malilib.json
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"Generic": {
|
||||
"ignoredKeys": {
|
||||
"keys": ""
|
||||
},
|
||||
"openGuiConfigs": {
|
||||
"keys": ""
|
||||
},
|
||||
"enableActionbarMessages": {
|
||||
"enabled": true,
|
||||
"hotkey": {
|
||||
"keys": ""
|
||||
}
|
||||
},
|
||||
"actionbarHudTicks": 60,
|
||||
"inGameMessageTimeout": 5.0,
|
||||
"enableConfigSwitcher": {
|
||||
"enabled": true,
|
||||
"hotkey": {
|
||||
"keys": ""
|
||||
}
|
||||
},
|
||||
"realmsCommonConfig": true
|
||||
},
|
||||
"Debug": {
|
||||
"debugMessages": false,
|
||||
"configElementDebug": false,
|
||||
"inputCancellationDebugging": false,
|
||||
"keybindDebugging": false,
|
||||
"keybindDebuggingIngame": false,
|
||||
"mouseScrollDebug": false,
|
||||
"printTranslationKeys": false
|
||||
}
|
||||
}
|
||||
793
overrides/config/minihud.json
Normal file
793
overrides/config/minihud.json
Normal file
@@ -0,0 +1,793 @@
|
||||
{
|
||||
"InfoLineOrders": {
|
||||
"infoFPS": 0,
|
||||
"infoMemoryUsage": 1,
|
||||
"infoTimeIRL": 2,
|
||||
"infoTimeWorld": 3,
|
||||
"infoWorldTimeFormatted": 4,
|
||||
"infoCoordinates": 5,
|
||||
"infoCoordinatesScaled": 6,
|
||||
"infoBlockPosition": 7,
|
||||
"infoChunkPosition": 8,
|
||||
"infoBlockInChunk": 9,
|
||||
"infoDimensionId": 10,
|
||||
"infoFacing": 11,
|
||||
"infoRotationYaw": 12,
|
||||
"infoRotationPitch": 13,
|
||||
"infoBlockBreakSpeed": 14,
|
||||
"infoPlayerExperience": 15,
|
||||
"infoSpeed": 16,
|
||||
"infoSpeedAxis": 17,
|
||||
"infoSpeedHV": 18,
|
||||
"infoSprinting": 19,
|
||||
"infoServerTPS": 20,
|
||||
"§6infoServux§r": 21,
|
||||
"infoPing": 22,
|
||||
"§6infoWeather§r": 23,
|
||||
"infoTimeTotalModulo": 24,
|
||||
"infoTimeDayModulo": 25,
|
||||
"§6infoMobCaps§r": 26,
|
||||
"infoParticleCount": 27,
|
||||
"infoDifficulty": 28,
|
||||
"infoEntities": 29,
|
||||
"infoEntitiesClientWorld": 30,
|
||||
"infoTileEntities": 31,
|
||||
"infoLightLevel": 32,
|
||||
"infoBiome": 33,
|
||||
"infoBiomeRegistryName": 34,
|
||||
"infoDistance": 35,
|
||||
"infoLoadedChunksCount": 36,
|
||||
"infoChunkSections": 37,
|
||||
"infoChunkSectionsLine": 38,
|
||||
"infoChunkUpdates": 39,
|
||||
"infoRegionFile": 40,
|
||||
"infoSlimeChunk": 41,
|
||||
"infoLookingAtBlock": 42,
|
||||
"infoLookingAtBlockInChunk": 43,
|
||||
"infoBlockProperties": 44,
|
||||
"§6infoBeeCount§r": 45,
|
||||
"§6infoComparatorOutput§r": 46,
|
||||
"infoHoneyLevel": 47,
|
||||
"§6infoFurnaceXp§r": 48,
|
||||
"infoEntityRegistryName": 49,
|
||||
"infoLookingAtEntity": 50,
|
||||
"infoLookingAtEffects": 51,
|
||||
"infoLookingAtPlayerExp": 52,
|
||||
"infoZombieConversion": 53,
|
||||
"infoHorseSpeed": 54,
|
||||
"infoHorseJump": 55,
|
||||
"infoPandaGene": 56,
|
||||
"infoDolphinTreasure": 57,
|
||||
"infoEntityVariant": 58,
|
||||
"infoEntityHomePos": 59
|
||||
},
|
||||
"Colors": {
|
||||
"beaconRangeLvl1": "#20E060FF",
|
||||
"beaconRangeLvl2": "#20FFB040",
|
||||
"beaconRangeLvl3": "#20FFF040",
|
||||
"beaconRangeLvl4": "#2060FF40",
|
||||
"blockGridOverlayColor": "#80FFFFFF",
|
||||
"conduitRange": "#2030FFFF",
|
||||
"conduitRangeOutlines": "#80FFFFFF",
|
||||
"lightLevelMarkerBlockLit": "#FF209040",
|
||||
"lightLevelMarkerDark": "#FFFF4848",
|
||||
"lightLevelMarkerDim": "#FFC0C040",
|
||||
"lightLevelMarkerSkyLit": "#FFFFFF33",
|
||||
"lightLevelNumberBlockDark": "#FFC03030",
|
||||
"lightLevelNumberBlockDim": "#FFC0C040",
|
||||
"lightLevelNumberBlockLit": "#FF20FF40",
|
||||
"lightLevelNumberSkyDark": "#FFFFF030",
|
||||
"lightLevelNumberSkyDim": "#FFC0C030",
|
||||
"lightLevelNumberSkyLit": "#FF40E0FF",
|
||||
"randomTicksFixedOverlayColor": "#30F9F225",
|
||||
"randomTicksPlayerOverlayColor": "#3030FE73",
|
||||
"regionOverlayColor": "#30FF8019",
|
||||
"shapeAdjustableSpawnSphere": "#6030B0B0",
|
||||
"shapeBox": "#6050A0A0",
|
||||
"shapeCanDespawnSphere": "#60A04050",
|
||||
"shapeCanSpawnSphere": "#60A04050",
|
||||
"shapeCircle": "#6030B0B0",
|
||||
"shapeDespawnSphere": "#60A04050",
|
||||
"shapeLineBlocky": "#6030F0B0",
|
||||
"shapeSphereBlocky": "#6030B0B0",
|
||||
"slimeChunksOverlayColor": "#3020F020",
|
||||
"spawnPlayerEntityOverlayColor": "#302050D0",
|
||||
"spawnPlayerRedstoneOverlayColor": "#30F8D641",
|
||||
"spawnPlayerLazyOverlayColor": "#30D030D0",
|
||||
"spawnPlayerOuterOverlayColor": "#306900D2",
|
||||
"spawnRealEntityOverlayColor": "#3030FF20",
|
||||
"spawnRealRedstoneOverlayColor": "#30F8D641",
|
||||
"spawnRealLazyOverlayColor": "#30FF3020",
|
||||
"spawnRealOuterOverlayColor": "#309D581A",
|
||||
"spawnableColumnHeightsOverlayColor": "#A0FF00FF",
|
||||
"textBackgroundColor": "#A0505050",
|
||||
"textColor": "#FFE0E0E0"
|
||||
},
|
||||
"Generic": {
|
||||
"axolotlTooltips": false,
|
||||
"beeTooltips": false,
|
||||
"disableVanillaBeeTooltips": false,
|
||||
"bundleTooltips": true,
|
||||
"bundleTooltipsFillLevel": 64,
|
||||
"customModelTooltips": false,
|
||||
"foodTooltips": false,
|
||||
"honeyTooltips": false,
|
||||
"lodestoneTooltips": false,
|
||||
"biomeOverlaySingleColor": true,
|
||||
"bundlePreview": false,
|
||||
"bundleDisplayBgColor": true,
|
||||
"bundleDisplayRequireShift": true,
|
||||
"bundleDisplayRowWidth": 9,
|
||||
"debugMessages": false,
|
||||
"dontClearStoredSeedOnDimensionChange": true,
|
||||
"conduitRangeOverlayCombineQuads": true,
|
||||
"conduitRangeOverlayOutlines": false,
|
||||
"conduitRangeOverlayThrough": false,
|
||||
"hudDataSync": {
|
||||
"enabled": false,
|
||||
"hotkey": {
|
||||
"keys": ""
|
||||
}
|
||||
},
|
||||
"entityDataSync": {
|
||||
"enabled": true,
|
||||
"hotkey": {
|
||||
"keys": ""
|
||||
}
|
||||
},
|
||||
"entityDataSyncBackup": true,
|
||||
"entityDataSyncBackupOpenToLan": false,
|
||||
"entityDataSyncCacheRefresh": 0.25,
|
||||
"entityDataSyncCacheTimeout": 1.0,
|
||||
"lightLevelAutoHeight": false,
|
||||
"lightLevelCollisionCheck": false,
|
||||
"lightLevelColoredNumbers": true,
|
||||
"lightLevelNumberRotation": true,
|
||||
"lightLevelRenderThrough": false,
|
||||
"lightLevelSkipBlockCheck": false,
|
||||
"lightLevelUnderWater": false,
|
||||
"mapPreview": false,
|
||||
"mapPreviewRequireShift": true,
|
||||
"offsetSubtitleHud": true,
|
||||
"requireSneak": false,
|
||||
"shulkerBoxPreview": true,
|
||||
"shulkerDisplayBgColor": true,
|
||||
"shulkerDisplayEnderChest": false,
|
||||
"shulkerDisplayRequireShift": true,
|
||||
"slimeChunkRenderThrough": false,
|
||||
"slimeChunkTopToPlayer": false,
|
||||
"sortLinesByLength": false,
|
||||
"sortLinesReversed": false,
|
||||
"spawnPlayerOuterOverlayEnabled": false,
|
||||
"spawnPlayerRedstoneOverlayEnabled": false,
|
||||
"spawnRealOuterOverlayEnabled": false,
|
||||
"spawnRealRedstoneOverlayEnabled": false,
|
||||
"speedUnits": "mps",
|
||||
"structuresRenderThrough": false,
|
||||
"useCustomizedCoordinateFormat": true,
|
||||
"useFontShadow": false,
|
||||
"useTextBackground": true,
|
||||
"mainRenderingToggle": {
|
||||
"enabled": true,
|
||||
"hotkey": {
|
||||
"keys": "H"
|
||||
}
|
||||
},
|
||||
"moveShapeToPlayer": {
|
||||
"keys": ""
|
||||
},
|
||||
"openConfigGui": {
|
||||
"keys": "H,C"
|
||||
},
|
||||
"requiredKey": {
|
||||
"keys": ""
|
||||
},
|
||||
"serverNbtRequestRate": 2,
|
||||
"setDistanceReferencePoint": {
|
||||
"keys": ""
|
||||
},
|
||||
"shapeEditor": {
|
||||
"keys": ""
|
||||
},
|
||||
"blockGridOverlayMode": "all",
|
||||
"lightLevelMarkerCondition": "spawnable",
|
||||
"lightLevelMarkers": "square",
|
||||
"lightLevelNumberCondition": "always",
|
||||
"lightLevelNumbers": "block",
|
||||
"hudAlignment": "top_right",
|
||||
"biomeOverlayRange": 4,
|
||||
"biomeOverlayRangeVertical": 0,
|
||||
"blockPosFormat": "Block: %d, %d, %d",
|
||||
"blockGridOverlayRadius": 32,
|
||||
"coordinateFormat": "x: %.1f y: %.1f z: %.1f",
|
||||
"dateFormatType": "regular",
|
||||
"dateFormatString": "yyyy-MM-dd HH:mm:ss",
|
||||
"dateFormatMinecraft": "MC time: (day {DAY}) {HOUR}:{MIN}:xx",
|
||||
"durationFormatType": "pretty",
|
||||
"durationFormatString": "HH:mm:ss.SSS",
|
||||
"fontScale": 1.0,
|
||||
"hudStatusEffectsShift": {
|
||||
"enabled": true,
|
||||
"hotkey": {
|
||||
"keys": ""
|
||||
}
|
||||
},
|
||||
"lightLevelMarkerSize": 0.84,
|
||||
"lightLevelNumberOffsetBlockX": 0.26,
|
||||
"lightLevelNumberOffsetBlockY": 0.32,
|
||||
"lightLevelNumberOffsetSkyX": 0.42,
|
||||
"lightLevelNumberOffsetSkyY": 0.56,
|
||||
"lightLevelRange": 24,
|
||||
"lightLevelThresholdDim": 0,
|
||||
"lightLevelThresholdSafe": 1,
|
||||
"lightLevelRenderOffset": 0.005,
|
||||
"mapPreviewSize": 160,
|
||||
"slimeChunkOverlayRadius": -1,
|
||||
"spawnableColumnHeightsOverlayRadius": 40,
|
||||
"textPosX": 4,
|
||||
"textPosY": 4,
|
||||
"timeDayDivisor": 24000,
|
||||
"timeTotalDivisor": 24000,
|
||||
"inventoryPreview": {
|
||||
"keys": "LEFT_ALT"
|
||||
},
|
||||
"inventoryPreviewEnabled": false,
|
||||
"inventoryPreviewToggleScreen": {
|
||||
"keys": "BUTTON_3"
|
||||
},
|
||||
"inventoryPreviewVillagerBGColor": false,
|
||||
"villagerConversionTicks": true,
|
||||
"villagerOfferEnchantmentBooks": true,
|
||||
"villagerOfferPriceRange": true,
|
||||
"villagerOfferHighestLevelOnly": false,
|
||||
"villagerOfferLowestPriceNearby": false,
|
||||
"villagerOfferPriceThreshold": 1.0
|
||||
},
|
||||
"InfoTypeToggles": {
|
||||
"infoFPS": true,
|
||||
"infoMemoryUsage": false,
|
||||
"infoTimeIRL": true,
|
||||
"infoTimeWorld": false,
|
||||
"infoWorldTimeFormatted": false,
|
||||
"infoCoordinates": true,
|
||||
"infoCoordinatesScaled": false,
|
||||
"infoBlockPosition": false,
|
||||
"infoChunkPosition": false,
|
||||
"infoBlockInChunk": false,
|
||||
"infoDimensionId": false,
|
||||
"infoFacing": true,
|
||||
"infoRotationYaw": false,
|
||||
"infoRotationPitch": false,
|
||||
"infoBlockBreakSpeed": false,
|
||||
"infoPlayerExperience": false,
|
||||
"infoSpeed": false,
|
||||
"infoSpeedAxis": false,
|
||||
"infoSpeedHV": false,
|
||||
"infoSprinting": false,
|
||||
"infoServerTPS": false,
|
||||
"§6infoServux§r": false,
|
||||
"infoPing": true,
|
||||
"§6infoWeather§r": false,
|
||||
"infoTimeTotalModulo": false,
|
||||
"infoTimeDayModulo": false,
|
||||
"§6infoMobCaps§r": false,
|
||||
"infoParticleCount": false,
|
||||
"infoDifficulty": false,
|
||||
"infoEntities": false,
|
||||
"infoEntitiesClientWorld": false,
|
||||
"infoTileEntities": false,
|
||||
"infoLightLevel": false,
|
||||
"infoBiome": false,
|
||||
"infoBiomeRegistryName": false,
|
||||
"infoDistance": false,
|
||||
"infoLoadedChunksCount": false,
|
||||
"infoChunkSections": false,
|
||||
"infoChunkSectionsLine": false,
|
||||
"infoChunkUpdates": false,
|
||||
"infoRegionFile": false,
|
||||
"infoSlimeChunk": false,
|
||||
"infoLookingAtBlock": false,
|
||||
"infoLookingAtBlockInChunk": false,
|
||||
"infoBlockProperties": false,
|
||||
"§6infoBeeCount§r": false,
|
||||
"§6infoComparatorOutput§r": false,
|
||||
"infoHoneyLevel": false,
|
||||
"§6infoFurnaceXp§r": false,
|
||||
"infoEntityRegistryName": false,
|
||||
"infoLookingAtEntity": false,
|
||||
"infoLookingAtEffects": false,
|
||||
"infoLookingAtPlayerExp": false,
|
||||
"infoZombieConversion": false,
|
||||
"infoHorseSpeed": false,
|
||||
"infoHorseJump": false,
|
||||
"infoPandaGene": false,
|
||||
"infoDolphinTreasure": false,
|
||||
"infoEntityVariant": false,
|
||||
"infoEntityHomePos": false
|
||||
},
|
||||
"InfoHotkeys": {
|
||||
"infoFPS": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoMemoryUsage": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoTimeIRL": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoTimeWorld": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoWorldTimeFormatted": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoCoordinates": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoCoordinatesScaled": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoBlockPosition": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoChunkPosition": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoBlockInChunk": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoDimensionId": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoFacing": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoRotationYaw": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoRotationPitch": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoBlockBreakSpeed": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoPlayerExperience": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoSpeed": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoSpeedAxis": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoSpeedHV": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoSprinting": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoServerTPS": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6infoServux§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoPing": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6infoWeather§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoTimeTotalModulo": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoTimeDayModulo": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6infoMobCaps§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoParticleCount": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoDifficulty": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoEntities": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoEntitiesClientWorld": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoTileEntities": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoLightLevel": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoBiome": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoBiomeRegistryName": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoDistance": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoLoadedChunksCount": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoChunkSections": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoChunkSectionsLine": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoChunkUpdates": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoRegionFile": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoSlimeChunk": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoLookingAtBlock": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoLookingAtBlockInChunk": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoBlockProperties": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6infoBeeCount§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6infoComparatorOutput§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoHoneyLevel": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6infoFurnaceXp§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoEntityRegistryName": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoLookingAtEntity": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoLookingAtEffects": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoLookingAtPlayerExp": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoZombieConversion": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoHorseSpeed": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoHorseJump": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoPandaGene": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoDolphinTreasure": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoEntityVariant": {
|
||||
"keys": ""
|
||||
},
|
||||
"infoEntityHomePos": {
|
||||
"keys": ""
|
||||
}
|
||||
},
|
||||
"RendererToggles": {
|
||||
"overlayBeaconRange": false,
|
||||
"overlayBiomeBorder": false,
|
||||
"overlayBlockGrid": false,
|
||||
"overlayConduitRange": false,
|
||||
"overlayLightLevel": false,
|
||||
"overlayRandomTicksFixed": false,
|
||||
"overlayRandomTicksPlayer": false,
|
||||
"overlayRegionFile": false,
|
||||
"overlaySlimeChunks": false,
|
||||
"overlaySpawnableColumnHeights": false,
|
||||
"overlaySpawnChunkReal": false,
|
||||
"overlaySpawnChunkPlayer": false,
|
||||
"§6overlayStructureMainToggle§r": false,
|
||||
"§6overlayVillagerInfo§r": false,
|
||||
"shapeRenderer": false,
|
||||
"§6debugDataMainToggle§r": false,
|
||||
"§6debugBeeDataEnabled§r": false,
|
||||
"§6debugBrainEnabled§r": false,
|
||||
"§6debugBreezeJumpEnabled§r": false,
|
||||
"debugChunkBorder": false,
|
||||
"debugChunkInfo": false,
|
||||
"§6debugChunkLoading§r": false,
|
||||
"debugChunkOcclusion": false,
|
||||
"debugCollisionBoxEnabled": false,
|
||||
"debugHeightmapEnabled": false,
|
||||
"debugLightEnabled": false,
|
||||
"§6debugNeighborsUpdateEnabled§r": false,
|
||||
"§6debugGameEventsEnabled§r": false,
|
||||
"§6debugGoalSelectorEnabled§r": false,
|
||||
"debugOctreeEnabled": false,
|
||||
"§6debugPathfindingEnabled§r": false,
|
||||
"§6debugRaidCenterEnabled§r": false,
|
||||
"debugSkylightEnabled": false,
|
||||
"debugSolidFaceEnabled": false,
|
||||
"§6debugStructuresEnabled§r": false,
|
||||
"debugSupportingBlock": false,
|
||||
"debugWaterEnabled": false,
|
||||
"§6debugVillageEnabled§r": false,
|
||||
"§6debugVillageSectionsEnabled§r": false,
|
||||
"§6debugWorldGenEnabled§r": false
|
||||
},
|
||||
"RendererHotkeys": {
|
||||
"overlayBeaconRange": {
|
||||
"keys": ""
|
||||
},
|
||||
"overlayBiomeBorder": {
|
||||
"keys": ""
|
||||
},
|
||||
"overlayBlockGrid": {
|
||||
"keys": ""
|
||||
},
|
||||
"overlayConduitRange": {
|
||||
"keys": ""
|
||||
},
|
||||
"overlayLightLevel": {
|
||||
"keys": "R"
|
||||
},
|
||||
"overlayRandomTicksFixed": {
|
||||
"keys": ""
|
||||
},
|
||||
"overlayRandomTicksPlayer": {
|
||||
"keys": ""
|
||||
},
|
||||
"overlayRegionFile": {
|
||||
"keys": ""
|
||||
},
|
||||
"overlaySlimeChunks": {
|
||||
"keys": ""
|
||||
},
|
||||
"overlaySpawnableColumnHeights": {
|
||||
"keys": ""
|
||||
},
|
||||
"overlaySpawnChunkReal": {
|
||||
"keys": ""
|
||||
},
|
||||
"overlaySpawnChunkPlayer": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6overlayStructureMainToggle§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6overlayVillagerInfo§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"shapeRenderer": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugDataMainToggle§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugBeeDataEnabled§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugBrainEnabled§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugBreezeJumpEnabled§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"debugChunkBorder": {
|
||||
"keys": ""
|
||||
},
|
||||
"debugChunkInfo": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugChunkLoading§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"debugChunkOcclusion": {
|
||||
"keys": ""
|
||||
},
|
||||
"debugCollisionBoxEnabled": {
|
||||
"keys": ""
|
||||
},
|
||||
"debugHeightmapEnabled": {
|
||||
"keys": ""
|
||||
},
|
||||
"debugLightEnabled": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugNeighborsUpdateEnabled§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugGameEventsEnabled§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugGoalSelectorEnabled§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"debugOctreeEnabled": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugPathfindingEnabled§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugRaidCenterEnabled§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"debugSkylightEnabled": {
|
||||
"keys": ""
|
||||
},
|
||||
"debugSolidFaceEnabled": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugStructuresEnabled§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"debugSupportingBlock": {
|
||||
"keys": ""
|
||||
},
|
||||
"debugWaterEnabled": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugVillageEnabled§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugVillageSectionsEnabled§r": {
|
||||
"keys": ""
|
||||
},
|
||||
"§6debugWorldGenEnabled§r": {
|
||||
"keys": ""
|
||||
}
|
||||
},
|
||||
"StructureColors": {
|
||||
"Ancient City Main": "#30D10AE6",
|
||||
"Ancient City Components": "#30D506C9",
|
||||
"Bastion Remnant Main": "#302171F5",
|
||||
"Bastion Remnant Components": "#302171F5",
|
||||
"Buried Treasure Main": "#302298E6",
|
||||
"Buried Treasure Components": "#302298E6",
|
||||
"Desert Pyramid Main": "#30FFFF00",
|
||||
"Desert Pyramid Components": "#30FFFF00",
|
||||
"End City Main": "#30EB07EB",
|
||||
"End City Components": "#30EB07EB",
|
||||
"Igloo Main": "#300FAFE4",
|
||||
"Igloo Components": "#300FAFE4",
|
||||
"Jungle Temple Main": "#3099FF00",
|
||||
"Jungle Temple Components": "#3099FF00",
|
||||
"Mansion Main": "#30FF6500",
|
||||
"Mansion Components": "#30FF6500",
|
||||
"Mineshaft Main": "#30F8D650",
|
||||
"Mineshaft Components": "#30F8D650",
|
||||
"Nether Fortress Main": "#30FC381D",
|
||||
"Nether Fortress Components": "#30FC381D",
|
||||
"Nether Fossil Main": "#30868E99",
|
||||
"Nether Fossil Components": "#30868E99",
|
||||
"Ocean Monument Main": "#3029E6EF",
|
||||
"Ocean Monument Components": "#3029E6EF",
|
||||
"Ocean Ruin Main": "#300FAD83",
|
||||
"Ocean Ruin Components": "#300FAD83",
|
||||
"Pillager Outpost Main": "#300FAD83",
|
||||
"Pillager Outpost Components": "#300FAD83",
|
||||
"Ruined Portal Main": "#309F03D3",
|
||||
"Ruined Portal Components": "#309F03D3",
|
||||
"Shipwreck Main": "#30EB1995",
|
||||
"Shipwreck Components": "#30EB1995",
|
||||
"Stronghold Main": "#30009999",
|
||||
"Stronghold Components": "#30009999",
|
||||
"Trial Chambers Main": "#3099664E",
|
||||
"Trial Chambers Components": "#30CC8868",
|
||||
"Village Main": "#3054CB4E",
|
||||
"Village Components": "#3054CB4E",
|
||||
"Witch Hut Main": "#30BE1DFC",
|
||||
"Witch Hut Components": "#300099FF",
|
||||
"Trail Ruins Main": "#307F5AFF",
|
||||
"Trail Ruins Components": "#307F5AFF",
|
||||
"Unknown Main": "#50FFFFFF",
|
||||
"Unknown Components": "#50FFFFFF"
|
||||
},
|
||||
"StructureHotkeys": {
|
||||
"Toggle Ancient City": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Bastion Remnant": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Buried Treasure": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Desert Pyramid": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle End City": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Igloo": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Jungle Temple": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Mansion": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Mineshaft": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Nether Fortress": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Nether Fossil": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Ocean Monument": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Ocean Ruin": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Pillager Outpost": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Ruined Portal": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Shipwreck": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Stronghold": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Trial Chambers": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Village": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Witch Hut": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Trail Ruins": {
|
||||
"keys": ""
|
||||
},
|
||||
"Toggle Unknown": {
|
||||
"keys": ""
|
||||
}
|
||||
},
|
||||
"StructureToggles": {
|
||||
"Ancient City": false,
|
||||
"Bastion Remnant": false,
|
||||
"Buried Treasure": false,
|
||||
"Desert Pyramid": false,
|
||||
"End City": false,
|
||||
"Igloo": false,
|
||||
"Jungle Temple": false,
|
||||
"Mansion": false,
|
||||
"Mineshaft": false,
|
||||
"Nether Fortress": false,
|
||||
"Nether Fossil": false,
|
||||
"Ocean Monument": false,
|
||||
"Ocean Ruin": false,
|
||||
"Pillager Outpost": false,
|
||||
"Ruined Portal": false,
|
||||
"Shipwreck": false,
|
||||
"Stronghold": false,
|
||||
"Trial Chambers": false,
|
||||
"Village": false,
|
||||
"Witch Hut": false,
|
||||
"Trail Ruins": false,
|
||||
"Unknown": false
|
||||
},
|
||||
"config_version": 1
|
||||
}
|
||||
15
overrides/config/minihud/beta.wdsj.pro.json
Normal file
15
overrides/config/minihud/beta.wdsj.pro.json
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"renderers": {
|
||||
"random_tickable_chunks": {
|
||||
"pos": [
|
||||
0.0,
|
||||
0.0,
|
||||
0.0
|
||||
]
|
||||
},
|
||||
"slime_chunks": {
|
||||
"y_top": 0.0
|
||||
}
|
||||
},
|
||||
"hud_data": {}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"data_storage": {
|
||||
"distance_pos": [
|
||||
0.0,
|
||||
0.0,
|
||||
0.0
|
||||
]
|
||||
},
|
||||
"shapes": {}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"data_storage": {
|
||||
"distance_pos": [
|
||||
0.0,
|
||||
0.0,
|
||||
0.0
|
||||
]
|
||||
},
|
||||
"shapes": {}
|
||||
}
|
||||
15
overrides/config/minihud/daihy.cn_50005.json
Normal file
15
overrides/config/minihud/daihy.cn_50005.json
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"renderers": {
|
||||
"random_tickable_chunks": {
|
||||
"pos": [
|
||||
0.0,
|
||||
0.0,
|
||||
0.0
|
||||
]
|
||||
},
|
||||
"slime_chunks": {
|
||||
"y_top": 0.0
|
||||
}
|
||||
},
|
||||
"hud_data": {}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"data_storage": {
|
||||
"distance_pos": [
|
||||
0.0,
|
||||
0.0,
|
||||
0.0
|
||||
]
|
||||
},
|
||||
"shapes": {}
|
||||
}
|
||||
14
overrides/config/minihud/mc.mineblock.cc.json
Normal file
14
overrides/config/minihud/mc.mineblock.cc.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"renderers": {
|
||||
"random_tickable_chunks": {
|
||||
"pos": [
|
||||
0.0,
|
||||
0.0,
|
||||
0.0
|
||||
]
|
||||
},
|
||||
"slime_chunks": {
|
||||
"y_top": 0.0
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"data_storage": {
|
||||
"distance_pos": [
|
||||
0.0,
|
||||
0.0,
|
||||
0.0
|
||||
]
|
||||
},
|
||||
"hud_data": {},
|
||||
"entities": {},
|
||||
"shapes": {}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"data_storage": {
|
||||
"distance_pos": [
|
||||
0.0,
|
||||
0.0,
|
||||
0.0
|
||||
]
|
||||
},
|
||||
"hud_data": {},
|
||||
"entities": {},
|
||||
"shapes": {}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"data_storage": {
|
||||
"distance_pos": [
|
||||
0.0,
|
||||
0.0,
|
||||
0.0
|
||||
]
|
||||
},
|
||||
"hud_data": {},
|
||||
"entities": {},
|
||||
"shapes": {}
|
||||
}
|
||||
17
overrides/config/minihud/mc.xm233.cn.json
Normal file
17
overrides/config/minihud/mc.xm233.cn.json
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"renderers": {
|
||||
"random_tickable_chunks": {
|
||||
"pos": [
|
||||
0.0,
|
||||
0.0,
|
||||
0.0
|
||||
]
|
||||
},
|
||||
"slime_chunks": {
|
||||
"y_top": 0.0
|
||||
}
|
||||
},
|
||||
"hud_data": {
|
||||
"seed": 20250504
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"data_storage": {
|
||||
"distance_pos": [
|
||||
0.0,
|
||||
0.0,
|
||||
0.0
|
||||
]
|
||||
},
|
||||
"shapes": {}
|
||||
}
|
||||
18
overrides/config/minihud/test.json
Normal file
18
overrides/config/minihud/test.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"renderers": {
|
||||
"random_tickable_chunks": {
|
||||
"pos": [
|
||||
0.0,
|
||||
0.0,
|
||||
0.0
|
||||
]
|
||||
},
|
||||
"slime_chunks": {
|
||||
"y_top": 0.0
|
||||
}
|
||||
},
|
||||
"hud_data": {
|
||||
"seed": -9137858631877548034,
|
||||
"spawn_chunk_radius": 2
|
||||
}
|
||||
}
|
||||
10
overrides/config/minihud/test_dim_minecraft_overworld.json
Normal file
10
overrides/config/minihud/test_dim_minecraft_overworld.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"data_storage": {
|
||||
"distance_pos": [
|
||||
0.0,
|
||||
0.0,
|
||||
0.0
|
||||
]
|
||||
},
|
||||
"shapes": {}
|
||||
}
|
||||
15
overrides/config/minihud/wdsj.pro.json
Normal file
15
overrides/config/minihud/wdsj.pro.json
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"renderers": {
|
||||
"random_tickable_chunks": {
|
||||
"pos": [
|
||||
0.0,
|
||||
0.0,
|
||||
0.0
|
||||
]
|
||||
},
|
||||
"slime_chunks": {
|
||||
"y_top": 0.0
|
||||
}
|
||||
},
|
||||
"hud_data": {}
|
||||
}
|
||||
15
overrides/config/minihud/wdsj.pro_26655.json
Normal file
15
overrides/config/minihud/wdsj.pro_26655.json
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"renderers": {
|
||||
"random_tickable_chunks": {
|
||||
"pos": [
|
||||
0.0,
|
||||
0.0,
|
||||
0.0
|
||||
]
|
||||
},
|
||||
"slime_chunks": {
|
||||
"y_top": 0.0
|
||||
}
|
||||
},
|
||||
"hud_data": {}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"data_storage": {
|
||||
"distance_pos": [
|
||||
0.0,
|
||||
0.0,
|
||||
0.0
|
||||
]
|
||||
},
|
||||
"shapes": {}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"data_storage": {
|
||||
"distance_pos": [
|
||||
0.0,
|
||||
0.0,
|
||||
0.0
|
||||
]
|
||||
},
|
||||
"shapes": {}
|
||||
}
|
||||
10
overrides/config/minihud/wdsj.pro_dim_minecraft_jfzc.json
Normal file
10
overrides/config/minihud/wdsj.pro_dim_minecraft_jfzc.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"data_storage": {
|
||||
"distance_pos": [
|
||||
0.0,
|
||||
0.0,
|
||||
0.0
|
||||
]
|
||||
},
|
||||
"shapes": {}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"data_storage": {
|
||||
"distance_pos": [
|
||||
0.0,
|
||||
0.0,
|
||||
0.0
|
||||
]
|
||||
},
|
||||
"shapes": {}
|
||||
}
|
||||
10
overrides/config/minihud/wdsj.pro_dim_minecraft_pvp1.json
Normal file
10
overrides/config/minihud/wdsj.pro_dim_minecraft_pvp1.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"data_storage": {
|
||||
"distance_pos": [
|
||||
0.0,
|
||||
0.0,
|
||||
0.0
|
||||
]
|
||||
},
|
||||
"shapes": {}
|
||||
}
|
||||
31
overrides/config/modmenu.json
Normal file
31
overrides/config/modmenu.json
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"sorting": "ascending",
|
||||
"count_libraries": true,
|
||||
"compact_list": false,
|
||||
"count_children": true,
|
||||
"mods_button_style": "classic",
|
||||
"game_menu_button_style": "replace",
|
||||
"count_hidden_mods": true,
|
||||
"mod_count_location": "title_screen",
|
||||
"hide_mod_links": false,
|
||||
"show_libraries": false,
|
||||
"hide_mod_license": false,
|
||||
"hide_badges": false,
|
||||
"hide_mod_credits": false,
|
||||
"easter_eggs": true,
|
||||
"random_java_colors": false,
|
||||
"translate_names": true,
|
||||
"translate_descriptions": true,
|
||||
"update_checker": true,
|
||||
"button_update_badge": true,
|
||||
"update_channel": "release",
|
||||
"quick_configure": true,
|
||||
"modify_title_screen": true,
|
||||
"modify_game_menu": true,
|
||||
"hide_config_buttons": false,
|
||||
"config_mode": false,
|
||||
"disable_drag_and_drop": false,
|
||||
"hidden_mods": [],
|
||||
"hidden_configs": [],
|
||||
"disable_update_checker": []
|
||||
}
|
||||
12
overrides/config/resourceful-config-web.json
Normal file
12
overrides/config/resourceful-config-web.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"enabled": false,
|
||||
"port": 7903,
|
||||
"validator": {
|
||||
"uuids": [],
|
||||
"if": {
|
||||
"password": "40f99ab9-84af-4380-a4e2-a61ca8a6e8b9",
|
||||
"type": "password"
|
||||
},
|
||||
"type": "if"
|
||||
}
|
||||
}
|
||||
18
overrides/config/skinlayers.json
Normal file
18
overrides/config/skinlayers.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"enableHat": true,
|
||||
"enableJacket": true,
|
||||
"enableLeftSleeve": true,
|
||||
"enableRightSleeve": true,
|
||||
"enableLeftPants": true,
|
||||
"enableRightPants": true,
|
||||
"baseVoxelSize": 1.15,
|
||||
"bodyVoxelWidthSize": 1.05,
|
||||
"headVoxelSize": 1.18,
|
||||
"renderDistanceLOD": 14,
|
||||
"enableSkulls": true,
|
||||
"enableSkullsItems": true,
|
||||
"skullVoxelSize": 1.1,
|
||||
"fastRender": true,
|
||||
"compatibilityMode": false,
|
||||
"firstPersonPixelScaling": 1.1
|
||||
}
|
||||
221
overrides/config/sodium-extra-options.json
Normal file
221
overrides/config/sodium-extra-options.json
Normal file
@@ -0,0 +1,221 @@
|
||||
{
|
||||
"animation_settings": {
|
||||
"animation": true,
|
||||
"water": true,
|
||||
"lava": true,
|
||||
"fire": true,
|
||||
"portal": true,
|
||||
"block_animations": true,
|
||||
"sculk_sensor": true
|
||||
},
|
||||
"particle_settings": {
|
||||
"particles": true,
|
||||
"rain_splash": true,
|
||||
"block_break": true,
|
||||
"block_breaking": true,
|
||||
"other": {
|
||||
"minecraft:portal": true,
|
||||
"minecraft:firework": true,
|
||||
"minecraft:flash": true,
|
||||
"minecraft:rain": true,
|
||||
"minecraft:dolphin": true,
|
||||
"minecraft:glow": true,
|
||||
"minecraft:heart": true,
|
||||
"minecraft:bubble_pop": true,
|
||||
"minecraft:falling_dripstone_water": true,
|
||||
"minecraft:flame": true,
|
||||
"minecraft:sculk_charge_pop": true,
|
||||
"minecraft:item_snowball": true,
|
||||
"minecraft:nautilus": true,
|
||||
"minecraft:trail": true,
|
||||
"minecraft:raid_omen": true,
|
||||
"minecraft:tinted_leaves": true,
|
||||
"minecraft:spore_blossom_air": true,
|
||||
"minecraft:falling_obsidian_tear": true,
|
||||
"minecraft:pale_oak_leaves": true,
|
||||
"minecraft:dripping_lava": true,
|
||||
"minecraft:dust": true,
|
||||
"minecraft:bubble_column_up": true,
|
||||
"minecraft:block_marker": true,
|
||||
"minecraft:gust_emitter_small": true,
|
||||
"minecraft:happy_villager": true,
|
||||
"minecraft:enchant": true,
|
||||
"minecraft:wax_on": true,
|
||||
"minecraft:campfire_signal_smoke": true,
|
||||
"minecraft:wax_off": true,
|
||||
"minecraft:sculk_soul": true,
|
||||
"minecraft:falling_spore_blossom": true,
|
||||
"minecraft:damage_indicator": true,
|
||||
"minecraft:infested": true,
|
||||
"minecraft:ash": true,
|
||||
"minecraft:explosion": true,
|
||||
"minecraft:gust": true,
|
||||
"minecraft:electric_spark": true,
|
||||
"minecraft:gust_emitter_large": true,
|
||||
"minecraft:dust_color_transition": true,
|
||||
"minecraft:falling_dust": true,
|
||||
"minecraft:current_down": true,
|
||||
"minecraft:dust_plume": true,
|
||||
"minecraft:item_cobweb": true,
|
||||
"minecraft:lava": true,
|
||||
"minecraft:reverse_portal": true,
|
||||
"minecraft:trial_spawner_detection": true,
|
||||
"minecraft:bubble": true,
|
||||
"minecraft:landing_lava": true,
|
||||
"minecraft:sneeze": true,
|
||||
"minecraft:dripping_water": true,
|
||||
"minecraft:landing_honey": true,
|
||||
"minecraft:soul": true,
|
||||
"minecraft:note": true,
|
||||
"minecraft:mycelium": true,
|
||||
"minecraft:explosion_emitter": true,
|
||||
"minecraft:underwater": true,
|
||||
"minecraft:small_gust": true,
|
||||
"minecraft:block": true,
|
||||
"minecraft:totem_of_undying": true,
|
||||
"minecraft:large_smoke": true,
|
||||
"minecraft:ominous_spawning": true,
|
||||
"minecraft:item_slime": true,
|
||||
"minecraft:instant_effect": true,
|
||||
"minecraft:entity_effect": true,
|
||||
"minecraft:falling_nectar": true,
|
||||
"minecraft:cherry_leaves": true,
|
||||
"minecraft:item": true,
|
||||
"minecraft:sculk_charge": true,
|
||||
"minecraft:elder_guardian": true,
|
||||
"minecraft:vault_connection": true,
|
||||
"minecraft:poof": true,
|
||||
"minecraft:scrape": true,
|
||||
"minecraft:sonic_boom": true,
|
||||
"minecraft:sweep_attack": true,
|
||||
"minecraft:shriek": true,
|
||||
"minecraft:falling_lava": true,
|
||||
"minecraft:dragon_breath": true,
|
||||
"minecraft:small_flame": true,
|
||||
"minecraft:egg_crack": true,
|
||||
"minecraft:angry_villager": true,
|
||||
"minecraft:block_crumble": true,
|
||||
"minecraft:splash": true,
|
||||
"minecraft:crit": true,
|
||||
"minecraft:soul_fire_flame": true,
|
||||
"minecraft:witch": true,
|
||||
"minecraft:smoke": true,
|
||||
"minecraft:glow_squid_ink": true,
|
||||
"minecraft:spit": true,
|
||||
"minecraft:falling_honey": true,
|
||||
"minecraft:campfire_cosy_smoke": true,
|
||||
"minecraft:snowflake": true,
|
||||
"minecraft:fishing": true,
|
||||
"minecraft:white_smoke": true,
|
||||
"minecraft:falling_water": true,
|
||||
"minecraft:squid_ink": true,
|
||||
"minecraft:dust_pillar": true,
|
||||
"minecraft:dripping_honey": true,
|
||||
"minecraft:enchanted_hit": true,
|
||||
"minecraft:warped_spore": true,
|
||||
"minecraft:dripping_obsidian_tear": true,
|
||||
"minecraft:cloud": true,
|
||||
"minecraft:end_rod": true,
|
||||
"minecraft:firefly": true,
|
||||
"minecraft:trial_omen": true,
|
||||
"minecraft:composter": true,
|
||||
"minecraft:landing_obsidian_tear": true,
|
||||
"minecraft:white_ash": true,
|
||||
"minecraft:crimson_spore": true,
|
||||
"minecraft:dripping_dripstone_water": true,
|
||||
"minecraft:effect": true,
|
||||
"minecraft:trial_spawner_detection_ominous": true,
|
||||
"minecraft:vibration": true,
|
||||
"minecraft:falling_dripstone_lava": true,
|
||||
"minecraft:dripping_dripstone_lava": true
|
||||
}
|
||||
},
|
||||
"detail_settings": {
|
||||
"sky": true,
|
||||
"sun": true,
|
||||
"moon": true,
|
||||
"stars": true,
|
||||
"rain_snow": true,
|
||||
"biome_colors": true,
|
||||
"sky_colors": true
|
||||
},
|
||||
"render_settings": {
|
||||
"global_fog": true,
|
||||
"fog_type_config": {
|
||||
"LAVA": {
|
||||
"enable": true,
|
||||
"environment_start_multiplier": 100,
|
||||
"environment_end_multiplier": 100,
|
||||
"render_distance_start_multiplier": 100,
|
||||
"render_distance_end_multiplier": 100,
|
||||
"sky_end_multiplier": 100,
|
||||
"cloud_end_multiplier": 100
|
||||
},
|
||||
"WATER": {
|
||||
"enable": true,
|
||||
"environment_start_multiplier": 100,
|
||||
"environment_end_multiplier": 100,
|
||||
"render_distance_start_multiplier": 100,
|
||||
"render_distance_end_multiplier": 100,
|
||||
"sky_end_multiplier": 100,
|
||||
"cloud_end_multiplier": 100
|
||||
},
|
||||
"POWDER_SNOW": {
|
||||
"enable": true,
|
||||
"environment_start_multiplier": 100,
|
||||
"environment_end_multiplier": 100,
|
||||
"render_distance_start_multiplier": 100,
|
||||
"render_distance_end_multiplier": 100,
|
||||
"sky_end_multiplier": 100,
|
||||
"cloud_end_multiplier": 100
|
||||
},
|
||||
"DIMENSION_OR_BOSS": {
|
||||
"enable": true,
|
||||
"environment_start_multiplier": 100,
|
||||
"environment_end_multiplier": 100,
|
||||
"render_distance_start_multiplier": 100,
|
||||
"render_distance_end_multiplier": 100,
|
||||
"sky_end_multiplier": 100,
|
||||
"cloud_end_multiplier": 100
|
||||
},
|
||||
"ATMOSPHERIC": {
|
||||
"enable": true,
|
||||
"environment_start_multiplier": 100,
|
||||
"environment_end_multiplier": 100,
|
||||
"render_distance_start_multiplier": 100,
|
||||
"render_distance_end_multiplier": 100,
|
||||
"sky_end_multiplier": 100,
|
||||
"cloud_end_multiplier": 100
|
||||
}
|
||||
},
|
||||
"light_updates": true,
|
||||
"item_frame": true,
|
||||
"armor_stand": true,
|
||||
"painting": true,
|
||||
"piston": true,
|
||||
"beacon_beam": true,
|
||||
"limit_beacon_beam_height": false,
|
||||
"enchanting_table_book": true,
|
||||
"item_frame_name_tag": true,
|
||||
"player_name_tag": true
|
||||
},
|
||||
"extra_settings": {
|
||||
"overlay_corner": "TOP_LEFT",
|
||||
"text_contrast": "NONE",
|
||||
"show_fps": false,
|
||||
"show_f_p_s_extended": true,
|
||||
"show_coords": false,
|
||||
"reduce_resolution_on_mac": false,
|
||||
"use_adaptive_sync": false,
|
||||
"cloud_height": 192,
|
||||
"toasts": true,
|
||||
"advancement_toast": true,
|
||||
"recipe_toast": true,
|
||||
"system_toast": true,
|
||||
"tutorial_toast": true,
|
||||
"instant_sneak": false,
|
||||
"prevent_shaders": false,
|
||||
"steady_debug_hud": true,
|
||||
"steady_debug_hud_refresh_interval": 1
|
||||
}
|
||||
}
|
||||
7
overrides/config/sodium-extra.properties
Normal file
7
overrides/config/sodium-extra.properties
Normal file
@@ -0,0 +1,7 @@
|
||||
# This is the configuration file for Sodium Extra.
|
||||
# This file exists for debugging purposes and should not be configured otherwise.
|
||||
#
|
||||
# You can find information on editing this file and all the available options here:
|
||||
# https://github.com/FlashyReese/sodium-extra-fabric/wiki/Configuration-File
|
||||
#
|
||||
# By default, this file will be empty except for this notice.
|
||||
1
overrides/config/sodium-fingerprint.json
Normal file
1
overrides/config/sodium-fingerprint.json
Normal file
@@ -0,0 +1 @@
|
||||
{"v":1,"s":"86354a7d99cc462641a3c0a32ac843d230461794ae082d39fd2d196a10baa22236a46b8556d4eaf144bf07b549bc20782d54deb3f6f9daef191a503f863ece42","u":"161d2defadb4426e3a66b674d083f1ed1fed398bb8aede1250606bd3fd0f699bd0cac386a515150dabd342ac1a93f32a2c4b0b7fa37c4080aa25d0cc953d0fad","p":"f8bed82f3cfa7c37a5de603ba93008e3fdb5af5b1ea0f4684725c0908b993e4ee96524141ed50fb422e981497c01eb933f9a7aac3067b4f22456d33ac0a92a67","t":1739292668}
|
||||
6
overrides/config/sodium-mixins.properties
Normal file
6
overrides/config/sodium-mixins.properties
Normal file
@@ -0,0 +1,6 @@
|
||||
# This is the configuration file for Sodium.
|
||||
#
|
||||
# You can find information on editing this file and all the available options here:
|
||||
# https://github.com/CaffeineMC/sodium/wiki/Configuration-File
|
||||
#
|
||||
# By default, this file will be empty except for this notice.
|
||||
29
overrides/config/sodium-options.json
Normal file
29
overrides/config/sodium-options.json
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"quality": {
|
||||
"weather_quality": "DEFAULT",
|
||||
"leaves_quality": "DEFAULT",
|
||||
"enable_vignette": true
|
||||
},
|
||||
"advanced": {
|
||||
"enable_memory_tracing": false,
|
||||
"use_advanced_staging_buffers": true,
|
||||
"cpu_render_ahead_limit": 3
|
||||
},
|
||||
"performance": {
|
||||
"chunk_builder_threads": 0,
|
||||
"chunk_build_defer_mode": "ALWAYS",
|
||||
"animate_only_visible_textures": true,
|
||||
"use_entity_culling": true,
|
||||
"use_fog_occlusion": true,
|
||||
"use_block_face_culling": true,
|
||||
"use_no_error_g_l_context": true,
|
||||
"quad_splitting_mode": "SAFE"
|
||||
},
|
||||
"notifications": {
|
||||
"has_cleared_donation_button": true,
|
||||
"has_seen_donation_prompt": true
|
||||
},
|
||||
"debug": {
|
||||
"terrain_sorting_enabled": true
|
||||
}
|
||||
}
|
||||
5
overrides/config/sodium-shadowy-path-blocks-options.json
Normal file
5
overrides/config/sodium-shadowy-path-blocks-options.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"shadowyness_percent": 85,
|
||||
"only_affect_path_blocks": true,
|
||||
"vanilla_path_block_lighting": false
|
||||
}
|
||||
4
overrides/config/transition.json
Normal file
4
overrides/config/transition.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"version": 1,
|
||||
"userConsentedToSendCrashReports": false
|
||||
}
|
||||
4
overrides/config/trender.json
Normal file
4
overrides/config/trender.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"version": 1,
|
||||
"style": "VANILLA_MODERN"
|
||||
}
|
||||
59
overrides/config/voxelmap.properties
Normal file
59
overrides/config/voxelmap.properties
Normal file
@@ -0,0 +1,59 @@
|
||||
Zoom Level:2
|
||||
Hide Minimap:false
|
||||
Show Coordinates:true
|
||||
Enable Cave Mode:true
|
||||
Dynamic Lighting:true
|
||||
Height Map:true
|
||||
Slope Map:true
|
||||
Blur:false
|
||||
Water Transparency:true
|
||||
Block Transparency:true
|
||||
Biomes:true
|
||||
Biome Overlay:0
|
||||
Chunk Grid:false
|
||||
Slime Chunks:false
|
||||
World Boarder:true
|
||||
Square Map:false
|
||||
Rotation:false
|
||||
Old North:false
|
||||
Waypoint Beacons:false
|
||||
Waypoint Signs:true
|
||||
Deathpoints:1
|
||||
Waypoint Max Distance:1000
|
||||
Waypoint Sort By:1
|
||||
Welcome Message:false
|
||||
Map Corner:0
|
||||
Map Size:1
|
||||
Zoom Key:key.keyboard.z
|
||||
Fullscreen Key:key.keyboard.unknown
|
||||
Menu Key:key.keyboard.m
|
||||
Waypoint Menu Key:key.keyboard.u
|
||||
Waypoint Key:key.keyboard.n
|
||||
Mob Key:key.keyboard.unknown
|
||||
In-game Waypoint Key:key.keyboard.unknown
|
||||
Teleport Command:tp %p %x %y %z
|
||||
Move Map Down While Status Effect:true
|
||||
Move ScoreBoard Down:true
|
||||
Distance Unit Conversion:true
|
||||
Waypoint Name Below Icon:true
|
||||
Waypoint Distance Below Name:true
|
||||
Radar Mode:2
|
||||
Show Radar:true
|
||||
Show Hostiles:true
|
||||
Show Players:true
|
||||
Show Neutrals:false
|
||||
Filter Mob Icons:true
|
||||
Outline Mob Icons:true
|
||||
Show Player Helmets:true
|
||||
Show Mob Helmets:true
|
||||
Show Player Names:false
|
||||
Show Mob Names:false
|
||||
Font Scale:1.0
|
||||
Show Facing:true
|
||||
Hidden Mobs:minecraft:,
|
||||
Worldmap Zoom:1.5878984
|
||||
Worldmap Minimum Zoom:0.5
|
||||
Worldmap Maximum Zoom:16.0
|
||||
Worldmap Cache Size:500
|
||||
Show Worldmap Waypoints:true
|
||||
Show Worldmap Waypoint Names:true
|
||||
49
overrides/config/waila/blacklist.json5
Normal file
49
overrides/config/waila/blacklist.json5
Normal file
@@ -0,0 +1,49 @@
|
||||
// Run `/waila reload` to apply changes server-wide.
|
||||
// Run `/wailac reload` to apply changes to only your client.
|
||||
//
|
||||
// Operators:
|
||||
// @namespace - include objects based on their namespace location
|
||||
// #tag - include objects based on data pack tags
|
||||
// /regex/ - include objects based on regular expression
|
||||
// default - include objects with specific ID
|
||||
//
|
||||
// An exclamation mark (!) prefix can be added which negates the pattern.
|
||||
// Any entries matching previous rules will be removed from it.
|
||||
// Can be combined with other rule to exclude what matches the rule.
|
||||
//
|
||||
// Example:
|
||||
// @aether - include all block from the aether namespace
|
||||
// #minecraft:planks - include all blocks in the planks tag
|
||||
// /.*_ore/ - include all blocks that ends with "_ore"
|
||||
// minecraft:iron_block - include only the iron block
|
||||
// !/.*:oak_.*$/ - exclude all blocks that its path start with "oak_"
|
||||
//
|
||||
// The `#waila:blacklist` tag rule can not be removed
|
||||
{
|
||||
blocks: [
|
||||
"minecraft:barrier",
|
||||
"minecraft:structure_void",
|
||||
"minecraft:light",
|
||||
"#waila:blacklist"
|
||||
],
|
||||
blockEntityTypes: [
|
||||
"#waila:blacklist"
|
||||
],
|
||||
entityTypes: [
|
||||
"minecraft:area_effect_cloud",
|
||||
"minecraft:experience_orb",
|
||||
"minecraft:fireball",
|
||||
"minecraft:firework_rocket",
|
||||
"minecraft:interaction",
|
||||
"minecraft:snowball",
|
||||
"#waila:blacklist"
|
||||
],
|
||||
//
|
||||
// The values below are used internally by WTHIT, you SHOULD NOT modify it!
|
||||
configVersion: 0,
|
||||
pluginHash: [
|
||||
-158949004,
|
||||
1449661236,
|
||||
2021915756
|
||||
]
|
||||
}
|
||||
5
overrides/config/waila/debug.json5
Normal file
5
overrides/config/waila/debug.json5
Normal file
@@ -0,0 +1,5 @@
|
||||
// Debug options, restart the game to apply
|
||||
{
|
||||
// Show test plugin on plugin toggle screen
|
||||
showTestPluginToggle: false
|
||||
}
|
||||
32
overrides/config/waila/extra/energy_blacklist.json5
Normal file
32
overrides/config/waila/extra/energy_blacklist.json5
Normal file
@@ -0,0 +1,32 @@
|
||||
// Run `/waila reload` to apply changes server-wide.
|
||||
// Run `/wailac reload` to apply changes to only your client.
|
||||
//
|
||||
// Operators:
|
||||
// @namespace - include objects based on their namespace location
|
||||
// #tag - include objects based on data pack tags
|
||||
// /regex/ - include objects based on regular expression
|
||||
// default - include objects with specific ID
|
||||
//
|
||||
// An exclamation mark (!) prefix can be added which negates the pattern.
|
||||
// Any entries matching previous rules will be removed from it.
|
||||
// Can be combined with other rule to exclude what matches the rule.
|
||||
//
|
||||
// Example:
|
||||
// @aether - include all block from the aether namespace
|
||||
// #minecraft:planks - include all blocks in the planks tag
|
||||
// /.*_ore/ - include all blocks that ends with "_ore"
|
||||
// minecraft:iron_block - include only the iron block
|
||||
// !/.*:oak_.*$/ - exclude all blocks that its path start with "oak_"
|
||||
//
|
||||
// The #waila:extra/energy_blacklist tag rule can not be removed
|
||||
{
|
||||
blocks: [
|
||||
"#waila:extra/energy_blacklist"
|
||||
],
|
||||
blockEntityTypes: [
|
||||
"#waila:extra/energy_blacklist"
|
||||
],
|
||||
entityTypes: [
|
||||
"#waila:extra/energy_blacklist"
|
||||
]
|
||||
}
|
||||
32
overrides/config/waila/extra/fluid_blacklist.json5
Normal file
32
overrides/config/waila/extra/fluid_blacklist.json5
Normal file
@@ -0,0 +1,32 @@
|
||||
// Run `/waila reload` to apply changes server-wide.
|
||||
// Run `/wailac reload` to apply changes to only your client.
|
||||
//
|
||||
// Operators:
|
||||
// @namespace - include objects based on their namespace location
|
||||
// #tag - include objects based on data pack tags
|
||||
// /regex/ - include objects based on regular expression
|
||||
// default - include objects with specific ID
|
||||
//
|
||||
// An exclamation mark (!) prefix can be added which negates the pattern.
|
||||
// Any entries matching previous rules will be removed from it.
|
||||
// Can be combined with other rule to exclude what matches the rule.
|
||||
//
|
||||
// Example:
|
||||
// @aether - include all block from the aether namespace
|
||||
// #minecraft:planks - include all blocks in the planks tag
|
||||
// /.*_ore/ - include all blocks that ends with "_ore"
|
||||
// minecraft:iron_block - include only the iron block
|
||||
// !/.*:oak_.*$/ - exclude all blocks that its path start with "oak_"
|
||||
//
|
||||
// The #waila:extra/fluid_blacklist tag rule can not be removed
|
||||
{
|
||||
blocks: [
|
||||
"#waila:extra/fluid_blacklist"
|
||||
],
|
||||
blockEntityTypes: [
|
||||
"#waila:extra/fluid_blacklist"
|
||||
],
|
||||
entityTypes: [
|
||||
"#waila:extra/fluid_blacklist"
|
||||
]
|
||||
}
|
||||
32
overrides/config/waila/extra/item_blacklist.json5
Normal file
32
overrides/config/waila/extra/item_blacklist.json5
Normal file
@@ -0,0 +1,32 @@
|
||||
// Run `/waila reload` to apply changes server-wide.
|
||||
// Run `/wailac reload` to apply changes to only your client.
|
||||
//
|
||||
// Operators:
|
||||
// @namespace - include objects based on their namespace location
|
||||
// #tag - include objects based on data pack tags
|
||||
// /regex/ - include objects based on regular expression
|
||||
// default - include objects with specific ID
|
||||
//
|
||||
// An exclamation mark (!) prefix can be added which negates the pattern.
|
||||
// Any entries matching previous rules will be removed from it.
|
||||
// Can be combined with other rule to exclude what matches the rule.
|
||||
//
|
||||
// Example:
|
||||
// @aether - include all block from the aether namespace
|
||||
// #minecraft:planks - include all blocks in the planks tag
|
||||
// /.*_ore/ - include all blocks that ends with "_ore"
|
||||
// minecraft:iron_block - include only the iron block
|
||||
// !/.*:oak_.*$/ - exclude all blocks that its path start with "oak_"
|
||||
//
|
||||
// The #waila:extra/item_blacklist tag rule can not be removed
|
||||
{
|
||||
blocks: [
|
||||
"#waila:extra/item_blacklist"
|
||||
],
|
||||
blockEntityTypes: [
|
||||
"#waila:extra/item_blacklist"
|
||||
],
|
||||
entityTypes: [
|
||||
"#waila:extra/item_blacklist"
|
||||
]
|
||||
}
|
||||
32
overrides/config/waila/extra/progress_blacklist.json5
Normal file
32
overrides/config/waila/extra/progress_blacklist.json5
Normal file
@@ -0,0 +1,32 @@
|
||||
// Run `/waila reload` to apply changes server-wide.
|
||||
// Run `/wailac reload` to apply changes to only your client.
|
||||
//
|
||||
// Operators:
|
||||
// @namespace - include objects based on their namespace location
|
||||
// #tag - include objects based on data pack tags
|
||||
// /regex/ - include objects based on regular expression
|
||||
// default - include objects with specific ID
|
||||
//
|
||||
// An exclamation mark (!) prefix can be added which negates the pattern.
|
||||
// Any entries matching previous rules will be removed from it.
|
||||
// Can be combined with other rule to exclude what matches the rule.
|
||||
//
|
||||
// Example:
|
||||
// @aether - include all block from the aether namespace
|
||||
// #minecraft:planks - include all blocks in the planks tag
|
||||
// /.*_ore/ - include all blocks that ends with "_ore"
|
||||
// minecraft:iron_block - include only the iron block
|
||||
// !/.*:oak_.*$/ - exclude all blocks that its path start with "oak_"
|
||||
//
|
||||
// The #waila:extra/progress_blacklist tag rule can not be removed
|
||||
{
|
||||
blocks: [
|
||||
"#waila:extra/progress_blacklist"
|
||||
],
|
||||
blockEntityTypes: [
|
||||
"#waila:extra/progress_blacklist"
|
||||
],
|
||||
entityTypes: [
|
||||
"#waila:extra/progress_blacklist"
|
||||
]
|
||||
}
|
||||
7
overrides/config/waila/plugin_toggle.json5
Normal file
7
overrides/config/waila/plugin_toggle.json5
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"waila:core": true,
|
||||
"waila:vanilla": true,
|
||||
"waila:harvest": true,
|
||||
"waila:extra": true,
|
||||
"waila:fabric": true
|
||||
}
|
||||
111
overrides/config/waila/waila.json5
Normal file
111
overrides/config/waila/waila.json5
Normal file
@@ -0,0 +1,111 @@
|
||||
{
|
||||
general: {
|
||||
// 显示提示框
|
||||
// 收集数据并渲染提示框
|
||||
// Default value: [true]
|
||||
displayTooltip: true,
|
||||
// 潜行详情
|
||||
// 仅当潜行时显示主体内容
|
||||
// Default value: [false]
|
||||
shiftForDetails: false,
|
||||
// 隐藏潜行文本
|
||||
// 当潜行详情启用时,隐藏“潜行显示详情”文本
|
||||
// Default value: [false]
|
||||
hideShiftText: false,
|
||||
// 显示模式
|
||||
// 提示框显示方式
|
||||
// 切换:显示按键会切换开关
|
||||
// 按住:必须按住显示按键
|
||||
// Default value: [TOGGLE]
|
||||
// Available values: [HOLD_KEY, TOGGLE]
|
||||
displayMode: "TOGGLE",
|
||||
// 玩家列表隐藏
|
||||
// 当玩家列表打开时隐藏提示框
|
||||
// Default value: [true]
|
||||
hideFromPlayerList: true,
|
||||
// 调试隐藏
|
||||
// 当调试菜单打开时隐藏提示框
|
||||
// Default value: [true]
|
||||
hideFromDebug: true,
|
||||
// 启用系统讲述人
|
||||
// 使用系统讲述人读出方块和实体名
|
||||
// Default value: [false]
|
||||
enableTextToSpeech: false,
|
||||
// 速率限制
|
||||
// 每个服务器请求之间的延迟是多少毫秒
|
||||
// 必须至少为250毫秒
|
||||
// Default value: [250]
|
||||
rateLimit: 250
|
||||
},
|
||||
overlay: {
|
||||
position: {
|
||||
align: {
|
||||
// Default value: [CENTER]
|
||||
// Available values: [LEFT, CENTER, RIGHT]
|
||||
x: "CENTER",
|
||||
// Default value: [TOP]
|
||||
// Available values: [TOP, MIDDLE, BOTTOM]
|
||||
y: "TOP"
|
||||
},
|
||||
anchor: {
|
||||
// Default value: [CENTER]
|
||||
// Available values: [LEFT, CENTER, RIGHT]
|
||||
x: "CENTER",
|
||||
// Default value: [TOP]
|
||||
// Available values: [TOP, MIDDLE, BOTTOM]
|
||||
y: "TOP"
|
||||
},
|
||||
// X轴偏移
|
||||
// 相对于屏幕锚点的X坐标
|
||||
// 坐标受尺寸影响
|
||||
// Default value: [0]
|
||||
x: 0,
|
||||
// Y轴偏移
|
||||
// 相对于屏幕锚点的Y坐标
|
||||
// 坐标受尺寸影响
|
||||
// Default value: [0]
|
||||
y: 0,
|
||||
// Boss栏重叠
|
||||
// 如果设为否,当Boss栏可见时工具框将向下移动
|
||||
// 仅影响顶部中心对齐
|
||||
// Default value: [false]
|
||||
bossBarsOverlap: false
|
||||
},
|
||||
color: {
|
||||
// 背景不透明度
|
||||
// Default value: [204]
|
||||
backgroundAlpha: 204,
|
||||
// Custom Themes
|
||||
themes: [],
|
||||
// 主题
|
||||
// Default value: [waila:vanilla]
|
||||
activeTheme: "waila:vanilla"
|
||||
},
|
||||
// 尺寸
|
||||
// 提示框的尺寸是多少
|
||||
// 默认为1.0
|
||||
// Default value: [1.0]
|
||||
scale: 1.0,
|
||||
// 叠加FPS
|
||||
// 降低叠加FPS可能会提高整个游戏的FPS
|
||||
// 设置为0以解锁
|
||||
// Default value: [30]
|
||||
fps: 30
|
||||
},
|
||||
// Text formatters
|
||||
formatter: {
|
||||
// Default value: [§9§o%s]
|
||||
modName: "§9§o%s",
|
||||
// Default value: [§f%s]
|
||||
blockName: "§f%s",
|
||||
// Default value: [§f%s]
|
||||
fluidName: "§f%s",
|
||||
// Default value: [§f%s]
|
||||
entityName: "§f%s",
|
||||
// Default value: [§8%s]
|
||||
registryName: "§8%s"
|
||||
},
|
||||
// Internal value, DO NOT TOUCH!
|
||||
// Default value: [0]
|
||||
configVersion: 1
|
||||
}
|
||||
311
overrides/config/waila/waila_plugins.json5
Normal file
311
overrides/config/waila/waila_plugins.json5
Normal file
@@ -0,0 +1,311 @@
|
||||
{
|
||||
waila: {
|
||||
// 显示方块
|
||||
// Default value: [true]
|
||||
show_blocks: true,
|
||||
// 显示流体
|
||||
// 尝试显示流体
|
||||
// Default value: [false]
|
||||
show_fluids: false,
|
||||
// 显示实体
|
||||
// Default value: [true]
|
||||
show_entities: true,
|
||||
// 显示图标
|
||||
// Default value: [true]
|
||||
show_icon: true,
|
||||
// 图标位置
|
||||
// Default value: [MIDDLE]
|
||||
// Available values: [TOP, MIDDLE, BOTTOM]
|
||||
icon_position: "MIDDLE",
|
||||
// 显示模组名称
|
||||
// Default value: [true]
|
||||
show_mod_name: true,
|
||||
// 显示物品模组名称
|
||||
// Default value: [true]
|
||||
show_item_mod_name: true,
|
||||
// 显示注册名称
|
||||
// Default value: [false]
|
||||
show_registry: false
|
||||
},
|
||||
minecraft: {
|
||||
// 显示方块位置
|
||||
// Default value: [false]
|
||||
"block.position": false,
|
||||
// 显示方块状态
|
||||
// Default value: [false]
|
||||
"block.state": false,
|
||||
// 显示物品实体
|
||||
// This value will get merged with the value from the server
|
||||
// Default value: [true]
|
||||
"entity.item_entity": true,
|
||||
// 显示实体位置
|
||||
// Default value: [false]
|
||||
"entity.position": false,
|
||||
// 显示生命值
|
||||
// This value will get merged with the value from the server
|
||||
// Default value: [true]
|
||||
"entity.health": true,
|
||||
// 显示伤害吸收值
|
||||
// Require server to have WTHIT installed, if not, will be locked to [false]
|
||||
// Default value: [true]
|
||||
"entity.absorption": true,
|
||||
// 显示护甲值
|
||||
// This value will get merged with the value from the server
|
||||
// Default value: [true]
|
||||
"entity.armor": true,
|
||||
// 紧凑模式
|
||||
// 用数字而不是用图标在一行中显示生命值和护甲值
|
||||
// Default value: [false]
|
||||
"entity.compact": false,
|
||||
// 每行最大图标
|
||||
// 在新行开始之前生命值和盔甲值图标的最大数量
|
||||
// Default value: [25]
|
||||
"entity.icon_per_line": 25,
|
||||
// 要绘制的最大生命值
|
||||
// 强制分数视图前,图标绘制的最大生命值
|
||||
// Default value: [100]
|
||||
"entity.long_health_max": 100,
|
||||
// 要绘制的最大护甲值
|
||||
// 强制数字视图前,图标绘制的最大护甲值
|
||||
// Default value: [100]
|
||||
"entity.long_armor_max": 100,
|
||||
// 显示宠物主人
|
||||
// 仅适用于已注册的Minecraft帐户
|
||||
// Require server to have WTHIT installed, if not, will be locked to [false]
|
||||
// Default value: [true]
|
||||
"pet.owner": true,
|
||||
// 隐藏未知主人
|
||||
// Default value: [false]
|
||||
"pet.hide_unknown_owner": false,
|
||||
// 显示马匹跳跃高度
|
||||
// This value will get merged with the value from the server
|
||||
// Default value: [true]
|
||||
"horse.jump_height": true,
|
||||
// 显示马匹行进速度
|
||||
// This value will get merged with the value from the server
|
||||
// Default value: [true]
|
||||
"horse.speed": true,
|
||||
// 显示熊猫基因
|
||||
// This value will get merged with the value from the server
|
||||
// Default value: [true]
|
||||
"panda.genes": true,
|
||||
// 显示蜂巢位置
|
||||
// Require server to have WTHIT installed, if not, will be locked to [false]
|
||||
// Default value: [true]
|
||||
"bee.hive_pos": true,
|
||||
// 显示蜂巢蜂蜜等级
|
||||
// This value will get merged with the value from the server
|
||||
// Default value: [true]
|
||||
"bee.hive_honey_level": true,
|
||||
// 显示蜂巢占领者
|
||||
// Require server to have WTHIT installed, if not, will be locked to [false]
|
||||
// Default value: [true]
|
||||
"bee.hive_occupants": true,
|
||||
// 显示信标效果
|
||||
// Require server to have WTHIT installed, if not, will be locked to [false]
|
||||
// Default value: [true]
|
||||
"effect.beacon": true,
|
||||
// 显示生物效果
|
||||
// Require server to have WTHIT installed, if not, will be locked to [false]
|
||||
// Default value: [true]
|
||||
"effect.mob": true,
|
||||
// 显示隐藏的生物效果
|
||||
// Require server to have WTHIT installed, if not, will be locked to [false]
|
||||
// Default value: [false]
|
||||
"effect.hidden_mob": false,
|
||||
// 显示正在播放的唱片
|
||||
// Require server to have WTHIT installed, if not, will be locked to [false]
|
||||
// Default value: [true]
|
||||
"jukebox.record": true,
|
||||
// 显示成长计时器
|
||||
// Require server to have WTHIT installed, if not, will be locked to [false]
|
||||
// Default value: [true]
|
||||
"timer.grow": true,
|
||||
// 显示繁殖冷却时间
|
||||
// Require server to have WTHIT installed, if not, will be locked to [false]
|
||||
// Default value: [true]
|
||||
"timer.breed": true,
|
||||
// 不显示隐身实体的信息
|
||||
// This value will get merged with the value from the server
|
||||
// Default value: [true]
|
||||
"override.invisible_entity": true,
|
||||
// 陷阱箱显示为正常箱子
|
||||
// This value will get merged with the value from the server
|
||||
// Default value: [true]
|
||||
"override.trapped_chest": true,
|
||||
// 细雪显示为正常雪
|
||||
// This value will get merged with the value from the server
|
||||
// Default value: [true]
|
||||
"override.powder_snow": true,
|
||||
// 被虫蚀的方块显示为正常方块
|
||||
// This value will get merged with the value from the server
|
||||
// Default value: [true]
|
||||
"override.infested": true,
|
||||
// 不显示搭乘的实体信息
|
||||
// 搭乘矿车、马匹等可搭乘实体时,不显示详细信息
|
||||
// Default value: [true]
|
||||
"override.vehicle": true,
|
||||
// 显示挖掘进度
|
||||
// This value will get merged with the value from the server
|
||||
// Default value: [true]
|
||||
"breaking_progress.enabled": true,
|
||||
// 挖掘进度颜色
|
||||
// Default value: [-1426063361]
|
||||
"breaking_progress.color": -1426063361,
|
||||
// 只在底部边界显示进度条
|
||||
// Default value: [false]
|
||||
"breaking_progress.bottom_only": false,
|
||||
// 显示刷怪笼类型
|
||||
// This value will get merged with the value from the server
|
||||
// Default value: [true]
|
||||
"spawner.type": true,
|
||||
// 显示作物生长进度
|
||||
// This value will get merged with the value from the server
|
||||
// Default value: [true]
|
||||
"plant.crop_progress": true,
|
||||
// 显示作物是否可生长
|
||||
// This value will get merged with the value from the server
|
||||
// Default value: [true]
|
||||
"plant.crop_growable": true,
|
||||
// 显示树木是否可生长
|
||||
// This value will get merged with the value from the server
|
||||
// Default value: [true]
|
||||
"plant.tree_growable": true,
|
||||
// 显示拉杆状态
|
||||
// This value will get merged with the value from the server
|
||||
// Default value: [true]
|
||||
"redstone.lever": true,
|
||||
// 显示中继器延迟
|
||||
// This value will get merged with the value from the server
|
||||
// Default value: [true]
|
||||
"redstone.repeater": true,
|
||||
// 显示比较器模式
|
||||
// This value will get merged with the value from the server
|
||||
// Default value: [true]
|
||||
"redstone.comparator": true,
|
||||
// 显示红石强度等级
|
||||
// This value will get merged with the value from the server
|
||||
// Default value: [true]
|
||||
"redstone.level": true,
|
||||
// 显示玩家名称
|
||||
// This value will get merged with the value from the server
|
||||
// Default value: [true]
|
||||
"player_head.name": true,
|
||||
// 显示堆肥等级
|
||||
// This value will get merged with the value from the server
|
||||
// Default value: [true]
|
||||
"level.composter": true,
|
||||
// 显示乐器与音符
|
||||
// This value will get merged with the value from the server
|
||||
// Default value: [true]
|
||||
"note_block.type": true,
|
||||
// 音符显示模式
|
||||
// Default value: [SHARP]
|
||||
// Available values: [SHARP, FLAT]
|
||||
"note_block.note": "SHARP",
|
||||
// 显示整型等级数值
|
||||
// Default value: [false]
|
||||
"note_block.int_value": false,
|
||||
// 展示雕纹书架书籍
|
||||
// Require server to have WTHIT installed, if not, will be locked to [false]
|
||||
// Default value: [true]
|
||||
"book.bookshelf": true,
|
||||
// 附魔显示模式
|
||||
// Default value: [CYCLE]
|
||||
// Available values: [SEPARATE, COMBINED, CYCLE, DISABLED]
|
||||
"book.enchantment": "CYCLE",
|
||||
// 附魔循环计时(毫秒)
|
||||
// Default value: [500]
|
||||
"book.enchantment_cycle_timing": 500,
|
||||
// 展示书籍的作者和时间
|
||||
// Default value: [true]
|
||||
"book.written": true
|
||||
},
|
||||
harvest: {
|
||||
// 显示收获物品
|
||||
// This value will get merged with the value from the server
|
||||
// Default value: [true]
|
||||
enabled: true,
|
||||
// 显示模式
|
||||
// Default value: [MODERN]
|
||||
// Available values: [MODERN, CLASSIC, CLASSIC_MINIMAL]
|
||||
display_mode: "MODERN",
|
||||
// 在创造上显示
|
||||
// Default value: [false]
|
||||
creative: false
|
||||
},
|
||||
wailax: {
|
||||
// 显示方块能量
|
||||
// Require server to have WTHIT installed, if not, will be locked to [false]
|
||||
// Default value: [true]
|
||||
"energy.enabled_block": true,
|
||||
// 显示实体能量
|
||||
// Require server to have WTHIT installed, if not, will be locked to [false]
|
||||
// Default value: [true]
|
||||
"energy.enabled_entity": true,
|
||||
// 能量黑名单
|
||||
// Custom config, open the following file
|
||||
// extra\energy_blacklist.json5
|
||||
"energy.blacklist": null,
|
||||
// 显示方块流体内容
|
||||
// Require server to have WTHIT installed, if not, will be locked to [false]
|
||||
// Default value: [true]
|
||||
"fluid.enabled_block": true,
|
||||
// 显示实体流体内容
|
||||
// Require server to have WTHIT installed, if not, will be locked to [false]
|
||||
// Default value: [true]
|
||||
"fluid.enabled_entity": true,
|
||||
// 显示装置
|
||||
// Default value: [MILLIBUCKETS]
|
||||
// Available values: [MILLIBUCKETS, DROPLETS]
|
||||
"fluid.display_unit": "MILLIBUCKETS",
|
||||
// 流体内容黑名单
|
||||
// Custom config, open the following file
|
||||
// extra\fluid_blacklist.json5
|
||||
"fluid.blacklist": null,
|
||||
// 显示方块合成进度
|
||||
// Require server to have WTHIT installed, if not, will be locked to [false]
|
||||
// Default value: [true]
|
||||
"progress.enabled_block": true,
|
||||
// 显示实体合成进度
|
||||
// Require server to have WTHIT installed, if not, will be locked to [false]
|
||||
// Default value: [true]
|
||||
"progress.enabled_entity": true,
|
||||
// 合成进度黑名单
|
||||
// Custom config, open the following file
|
||||
// extra\progress_blacklist.json5
|
||||
"progress.blacklist": null,
|
||||
// 显示方块物品内容
|
||||
// Require server to have WTHIT installed, if not, will be locked to [false]
|
||||
// Default value: [true]
|
||||
"item.enabled_block": true,
|
||||
// 显示实体物品内容
|
||||
// Require server to have WTHIT installed, if not, will be locked to [false]
|
||||
// Default value: [true]
|
||||
"item.enabled_entity": true,
|
||||
// 同步NBT数据
|
||||
// Require server to have WTHIT installed, if not, will be locked to [false]
|
||||
// Default value: [true]
|
||||
"item.nbt": true,
|
||||
// 显示模式
|
||||
// 网格: 显示为网格,就像物品栏的工作原理一样
|
||||
// 列表:显示为带内联名称的垂直列表
|
||||
// 动态:超过最大高度时从列表切换到网格
|
||||
// Default value: [DYNAMIC]
|
||||
// Available values: [GRID, LIST, DYNAMIC]
|
||||
"item.display_mode": "DYNAMIC",
|
||||
// 最大高度
|
||||
// Default value: [3]
|
||||
"item.max_height": 3,
|
||||
// 按计数排序
|
||||
// Default value: [true]
|
||||
"item.sort_by_count": true,
|
||||
// Grid Mode Scale
|
||||
// Default value: [1.0]
|
||||
"item.grid_mode_scale": 1.0,
|
||||
// 物品内容黑名单
|
||||
// Custom config, open the following file
|
||||
// extra\item_blacklist.json5
|
||||
"item.blacklist": null
|
||||
}
|
||||
}
|
||||
19
overrides/config/worldeditcui.config.json
Normal file
19
overrides/config/worldeditcui.config.json
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"debugMode": false,
|
||||
"promiscuous": false,
|
||||
"clearAllOnKey": false,
|
||||
"cuboidGridColor": "#CC4C4CCC",
|
||||
"cuboidEdgeColor": "#CC3333CC",
|
||||
"cuboidFirstPointColor": "#33CC33CC",
|
||||
"cuboidSecondPointColor": "#3333CCCC",
|
||||
"polyGridColor": "#CC3333CC",
|
||||
"polyEdgeColor": "#CC4C4CCC",
|
||||
"polyPointColor": "#33CCCCCC",
|
||||
"ellipsoidGridColor": "#CC4C4CCC",
|
||||
"ellipsoidPointColor": "#CCCC33CC",
|
||||
"cylinderGridColor": "#CC3333CC",
|
||||
"cylinderEdgeColor": "#CC4C4CCC",
|
||||
"cylinderPointColor": "#CC33CCCC",
|
||||
"chunkBoundaryColour": "#33CC33CC",
|
||||
"chunkGridColour": "#4CCCAA99"
|
||||
}
|
||||
BIN
overrides/mods/【3D皮肤】skinlayers3d-fabric-1.10.1-mc1.21.8.jar
Normal file
BIN
overrides/mods/【3D皮肤】skinlayers3d-fabric-1.10.1-mc1.21.8.jar
Normal file
Binary file not shown.
Binary file not shown.
BIN
overrides/mods/【优化按键】too-many-shortcuts-0.0.14.jar
Normal file
BIN
overrides/mods/【优化按键】too-many-shortcuts-0.0.14.jar
Normal file
Binary file not shown.
BIN
overrides/mods/【优化载入】LazyDFU-[UNOFFICIAL]-1.21.8.jar
Normal file
BIN
overrides/mods/【优化载入】LazyDFU-[UNOFFICIAL]-1.21.8.jar
Normal file
Binary file not shown.
BIN
overrides/mods/【体素地图】voxelmap-fabric-1.21.8-1.15.7.jar
Normal file
BIN
overrides/mods/【体素地图】voxelmap-fabric-1.21.8-1.15.7.jar
Normal file
Binary file not shown.
BIN
overrides/mods/【修复】debugify-1.21.8+1.0.jar
Normal file
BIN
overrides/mods/【修复】debugify-1.21.8+1.0.jar
Normal file
Binary file not shown.
BIN
overrides/mods/【切换账号】authme-fabric-9.0.1+1.21.7.jar
Normal file
BIN
overrides/mods/【切换账号】authme-fabric-9.0.1+1.21.7.jar
Normal file
Binary file not shown.
BIN
overrides/mods/【创世神CUI】WorldEditCUI-1.21.7+01.jar
Normal file
BIN
overrides/mods/【创世神CUI】WorldEditCUI-1.21.7+01.jar
Normal file
Binary file not shown.
BIN
overrides/mods/【前置】ForgeConfigAPIPort-v21.8.2-1.21.8-Fabric.jar
Normal file
BIN
overrides/mods/【前置】ForgeConfigAPIPort-v21.8.2-1.21.8-Fabric.jar
Normal file
Binary file not shown.
BIN
overrides/mods/【前置】architectury-17.0.8-fabric.jar
Normal file
BIN
overrides/mods/【前置】architectury-17.0.8-fabric.jar
Normal file
Binary file not shown.
BIN
overrides/mods/【前置】badpackets-fabric-0.9.0.jar
Normal file
BIN
overrides/mods/【前置】badpackets-fabric-0.9.0.jar
Normal file
Binary file not shown.
BIN
overrides/mods/【前置】cloth-config-19.0.147-fabric.jar
Normal file
BIN
overrides/mods/【前置】cloth-config-19.0.147-fabric.jar
Normal file
Binary file not shown.
BIN
overrides/mods/【前置】fabric-api-0.136.1+1.21.8.jar
Normal file
BIN
overrides/mods/【前置】fabric-api-0.136.1+1.21.8.jar
Normal file
Binary file not shown.
Binary file not shown.
BIN
overrides/mods/【前置】libIPN-fabric-1.21.6-6.6.2.jar
Normal file
BIN
overrides/mods/【前置】libIPN-fabric-1.21.6-6.6.2.jar
Normal file
Binary file not shown.
BIN
overrides/mods/【前置】malilib-fabric-1.21.8-0.25.7.jar
Normal file
BIN
overrides/mods/【前置】malilib-fabric-1.21.8-0.25.7.jar
Normal file
Binary file not shown.
BIN
overrides/mods/【动态光源】lambdynamiclights-4.8.7+1.21.8.jar
Normal file
BIN
overrides/mods/【动态光源】lambdynamiclights-4.8.7+1.21.8.jar
Normal file
Binary file not shown.
BIN
overrides/mods/【变焦】zume-1.2.1.jar
Normal file
BIN
overrides/mods/【变焦】zume-1.2.1.jar
Normal file
Binary file not shown.
BIN
overrides/mods/【更好的F3】BetterF3-15.0.0-Fabric-1.21.6.jar
Normal file
BIN
overrides/mods/【更好的F3】BetterF3-15.0.0-Fabric-1.21.6.jar
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user