First version!

This commit is contained in:
Motschen
2020-11-28 18:16:51 +01:00
parent 0e76fe2520
commit 14d477844e
14 changed files with 508 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

View 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"
]
}

View File

@@ -0,0 +1,11 @@
{
"required": true,
"package": "eu.midnightdust.fastleaves.mixin",
"compatibilityLevel": "JAVA_8",
"client": [
"MixinLeavesBlock"
],
"injectors": {
"defaultRequire": 1
}
}