-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hyst: add better biome blend & entity culling
- Loading branch information
Showing
8 changed files
with
230 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Configuration file | ||
|
||
general { | ||
# Min: 0 | ||
# Max: 14 | ||
I:"Blend Radius"=14 | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
# Configuration file | ||
|
||
general { | ||
# Ideally should be set to equal the render distance. Ram usage (in Bytes) = 1063 * (2x + 1) ^ 3 | ||
I:cacheSize=12 | ||
B:disabledInSpectator=true | ||
|
||
# If you have a weak CPU enabling this option might help reducing the CPU usage. | ||
B:enableRaytraceCache=false | ||
|
||
# Disable all changes from this mod (This is not equal to removing the mod!). | ||
B:enabled=true | ||
|
||
# If enabled and OpenGl 4.4 is supported OpenGl based culling is used which is a lot faster and more accurate. If you have a weak GPU you might want to disable this. | ||
B:openglBasedCulling=true | ||
|
||
# Mode that is used to calculate the distance from camera to a raytrace end point. | ||
# Valid values: | ||
# SPHERICAL | ||
# CYLINDRICAL | ||
S:raytraceDistanceCalculator=SPHERICAL | ||
|
||
# Used to calculate the raytrace distance limit. Points farther away than the limit are not raytraced. Distance limit = (renderDistance * 16 + adder) * multiplier | ||
# Min: 0.0 | ||
# Max: 1024.0 | ||
D:raytraceDistanceLimitAdder=16.0 | ||
|
||
# Used to calculate the raytrace distance limit. Points farther away than the limit are not raytraced. Distance limit = (renderDistance * 16 + adder) * multiplier | ||
# Min: 0.0 | ||
# Max: 1024.0 | ||
D:raytraceDistanceLimitMultiplier=1.0 | ||
|
||
# If you feel the need to increase this value because of entities being culled falsely then another modder probably messed up their render bounding boxes and you should report the issue to them. Alternatively you can use the (tile-)entityBoundingBoxGrowthList settings to fix bounding boxes on your own. | ||
# Min: 0.0 | ||
# Max: 1024.0 | ||
D:raytraceThreshold=1.0 | ||
|
||
# If enabled tile entity bounding boxes are increased slightly to avoid issues when other mods don't correctly set their bounding boxes (requires opengl based culling). If you still have culling or flickering issues you can use the 'debugRenderBoxes', 'entityBoundingBoxGrowthList' and 'tileEntityBoundingBoxGrowthList' config options to try to fix the bounding box of that entity or tile entity. | ||
B:tileEntityAABBGrowth=true | ||
|
||
entity { | ||
B:alwaysRenderBosses=true | ||
B:alwaysRenderEntitiesWithName=true | ||
B:alwaysRenderPlayers=true | ||
B:alwaysRenderViewEntity=true | ||
B:ignoreEndCrystalsWithBeam=true | ||
|
||
# Skip rendering of entities that are not visible (hidden behind blocks). This might cause issues where an entity is partly behind a block and thus does not get rendered but it's usually not really noticable. | ||
B:skipHiddenEntityRendering=true | ||
|
||
# Tile entities which will always be rendered. (Accepts 'modid' or 'modid:entity_name') | ||
S:skipHiddenEntityRenderingBlacklist < | ||
> | ||
|
||
# Entities with a width or height greater than this value will always get rendered. | ||
# Min: 0.0 | ||
# Max: 1024.0 | ||
D:skipHiddenEntityRenderingSize=16.0 | ||
} | ||
|
||
tileentity { | ||
# Skip rendering of entities that are not visible (hidden behind blocks). This might cause issues where a tile entity is partly behind a block and thus does not get rendered but it's usually not really noticable. | ||
B:skipHiddenTileEntityRendering=true | ||
|
||
# Tile entities which will always be rendered. (Accepts 'modid' or 'modid:tile_entity_name') | ||
S:skipHiddenTileEntityRenderingBlacklist < | ||
enderio:tile_travel_anchor | ||
> | ||
|
||
# Tile entities with a width or height greater than this value will always get rendered. | ||
# Min: 0.0 | ||
# Max: 1024.0 | ||
D:skipHiddenTileEntityRenderingSize=16.0 | ||
} | ||
|
||
optifineshaderoptions { | ||
B:entityShadowsCulling=true | ||
B:entityShadowsCullingLessAggressiveMode=true | ||
|
||
# Min: 0.0 | ||
# Max: 1024.0 | ||
D:entityShadowsCullingLessAggressiveModeDiff=4.0 | ||
B:tileEntityShadowsCulling=true | ||
B:tileEntityShadowsCullingLessAggressiveMode=true | ||
|
||
# Min: 0.0 | ||
# Max: 1024.0 | ||
D:tileEntityShadowsCullingLessAggressiveModeDiff=4.0 | ||
} | ||
|
||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# Configuration file | ||
|
||
general { | ||
B:debugRenderBoxes=false | ||
|
||
# Allows you to increase the render bounding boxes of entities (or all entities of a mod). Width increases the size on the X and Z axis. Top increases the size in the positive Y direction. Bottom increases the size in the negative Y direction. (Accepts 'modid=width,top,bottom' or 'modid:entity=width,top,bottom'). | ||
S:entityBoundingBoxGrowthList < | ||
> | ||
I:mainMenuFPS=60 | ||
|
||
# If set to true the main menu FPS is synced to the in game FPS (but clamped between 30 and 240). | ||
B:mainMenuFPSSynced=false | ||
B:openGLLogExtensions=false | ||
B:showFrameTimes=false | ||
|
||
# Allows you to increase the render bounding boxes of tile entities (or all entities of a mod). Width increases the size on the X and Z axis. Top increases the size in the positive Y direction. Bottom increases the size in the negative Y direction. (Accepts 'modid=width,top,bottom' or 'modid:tileentity=width,top,bottom'). | ||
S:tileEntityBoundingBoxGrowthList < | ||
> | ||
|
||
# Tile entities whose bounding boxes won't be cached (Accepts 'modid' or 'modid:tileentity'). | ||
S:tileEntityCachedBoundingBoxBlacklist < | ||
> | ||
|
||
# Most tile entities have static bounding boxes and thus they can be cached. Tile entities whose bounding boxes are likely to change every frame or so should be added to the blacklist. Tile entities whose bounding only change every once in a while should be covered by cache updates (update speed adjustable through tileEntityCachedBoundingBoxUpdateInterval) | ||
B:tileEntityCachedBoundingBoxEnabled=true | ||
|
||
# Every frame there is a 1 in x chance to update the cached bounding box. Higher = better performance, Lower = tile entities with dynamic bounding boxes get updated faster. | ||
# Min: 1 | ||
# Max: 1000000 | ||
I:tileEntityCachedBoundingBoxUpdateInterval=100 | ||
|
||
opengldebugoutput { | ||
# Enable/Disable crashing when an OpenGL error occurs. If disabled OpenGL errors are likely to go unnoticed unless the log is checked manually. | ||
B:crashOnError=false | ||
|
||
# Better debugging of OpenGL errors. Might not be supported by your hardware/driver. | ||
B:enabled=true | ||
|
||
# Enable/Disable appending of the stack trace when logging a debug message. | ||
# Valid values: | ||
# DISABLED | ||
# ALWAYS | ||
# ERRORS_ONLY | ||
S:logStackTrace=ERRORS_ONLY | ||
|
||
# Enable/Disable debug messages matching the specified filters. | ||
# Format: 'source, type, severity, enabled' | ||
# Valid source values: [ ANY, API, WINDOW_SYSTEM, SHADER_COMPILER, THIRD_PARTY, APPLICATION, OTHER ] | ||
# Valid type values: [ ANY, ERROR, DEPRECATED_BEHAVIOR, UNDEFINED_BEHAVIOR, PORTABILITY, PERFORMANCE, MARKER, PUSH_GROUP, POP_GROUP, OTHER ] | ||
# Valid severity values: [ ANY, HIGH, MEDIUM, LOW, NOTIFICATION ] | ||
S:messageFilters < | ||
ANY;ERROR;ANY;true | ||
> | ||
|
||
# May be required by some systems to generate OpenGL debug output. (Enabling might have a negative impact on performance) | ||
B:setContextDebugBit=false | ||
} | ||
|
||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name = "Better Biome Blend" | ||
filename = "betterbiomeblend-1.12.2-1.1.7-forge.jar" | ||
side = "client" | ||
|
||
[download] | ||
hash-format = "sha1" | ||
hash = "a9463fed7357f39515707b5bbb4cac780916abf5" | ||
mode = "metadata:curseforge" | ||
|
||
[update] | ||
[update.curseforge] | ||
file-id = 3554486 | ||
project-id = 446253 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name = "Entity Culling" | ||
filename = "EntityCulling-1.12.2-6.4.3.jar" | ||
side = "client" | ||
|
||
[download] | ||
hash-format = "sha1" | ||
hash = "6cecf04d943834fd2b09953b98d46d9340735e49" | ||
mode = "metadata:curseforge" | ||
|
||
[update] | ||
[update.curseforge] | ||
file-id = 5096144 | ||
project-id = 409087 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name = "RenderLib" | ||
filename = "RenderLib-1.12.2-1.3.5.jar" | ||
side = "both" | ||
|
||
[download] | ||
hash-format = "sha1" | ||
hash = "0635a2cd62e1ab352941af5d886d2ebb0aa593fa" | ||
mode = "metadata:curseforge" | ||
|
||
[update] | ||
[update.curseforge] | ||
file-id = 5421689 | ||
project-id = 624967 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters