mirror of
https://github.com/TeamMidnightDust/CullLeaves.git
synced 2025-12-17 06:35:10 +01:00
First version!
This commit is contained in:
BIN
src/main/resources/assets/fastleaves/icon.png
Normal file
BIN
src/main/resources/assets/fastleaves/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 18 KiB |
26
src/main/resources/fabric.mod.json
Normal file
26
src/main/resources/fabric.mod.json
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "fastleaves",
|
||||
"version": "${version}",
|
||||
|
||||
"name": "Fast 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/FastLeaves",
|
||||
"issues": "https://github.com/TeamMidnightDust/FastLeaves/issues"
|
||||
},
|
||||
|
||||
"license": "MIT",
|
||||
"icon": "assets/fastleaves/icon.png",
|
||||
|
||||
"environment": "client",
|
||||
|
||||
"mixins": [
|
||||
"fastleaves.mixins.json"
|
||||
]
|
||||
}
|
||||
11
src/main/resources/fastleaves.mixins.json
Normal file
11
src/main/resources/fastleaves.mixins.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"required": true,
|
||||
"package": "eu.midnightdust.fastleaves.mixin",
|
||||
"compatibilityLevel": "JAVA_8",
|
||||
"client": [
|
||||
"MixinLeavesBlock"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user