Files
CullLeaves/fabric/src/main/resources/fabric.mod.json
Martin Prokoph b8d2e6b4ab Many QoL improvements & Resourcepack features
- Support Sodium 0.6+
- Allow resourcepacks to force culling and hide fully-encircled leaf blocks
- Force leaf culling when the smart leaves pack is enabled
- Reload world when the config changes
- Only apply Sodium mixins when Sodium is actually installed (Removes log spam)
2024-12-24 14:01:05 +01:00

40 lines
858 B
JSON

{
"schemaVersion": 1,
"id": "cullleaves",
"version": "${version}",
"name": "Cull Leaves",
"description": "Adds culling to leaf blocks, providing a huge performance boost over vanilla.",
"authors": [
"Motschen",
"TeamMidnightDust"
],
"contact": {
"homepage": "https://www.midnightdust.eu/",
"sources": "https://github.com/TeamMidnightDust/CullLeaves",
"issues": "https://github.com/TeamMidnightDust/CullLeaves/issues"
},
"license": "MIT",
"icon": "assets/cullleaves/icon.png",
"environment": "client",
"entrypoints": {
"client": [
"eu.midnightdust.cullleaves.fabric.CullLeavesClientFabric"
]
},
"depends": {
"midnightlib": "*",
"minecraft": ">=1.21"
},
"breaks": {
"sodium": "<0.6.0"
},
"mixins": [
"cullleaves.mixins.json",
"cullleaves-fabric.mixins.json"
]
}