Rename to Cull Leaves

This commit is contained in:
Motschen
2020-11-28 19:20:04 +01:00
parent 26277f87e5
commit 361a77aa01
7 changed files with 13 additions and 9 deletions

View File

@@ -1,2 +1,6 @@
<<<<<<< Updated upstream
# Smart Leaves
=======
# Cull Leaves
>>>>>>> Stashed changes
Adds culling to leaf blocks, providing a huge performance boost over vanilla.

View File

@@ -10,7 +10,7 @@ org.gradle.jvmargs=-Xmx1G
# Mod Properties
mod_version = 1.0.0
maven_group = eu.midnightdust
archives_base_name = fastleaves
archives_base_name = smartleaves
# Dependencies
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api

View File

@@ -1,4 +1,4 @@
package eu.midnightdust.fastleaves.mixin;
package eu.midnightdust.cullleaves.mixin;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

View File

@@ -1,6 +1,6 @@
{
"required": true,
"package": "eu.midnightdust.fastleaves.mixin",
"package": "eu.midnightdust.cullleaves.mixin",
"compatibilityLevel": "JAVA_8",
"client": [
"MixinLeavesBlock"

View File

@@ -1,9 +1,9 @@
{
"schemaVersion": 1,
"id": "fastleaves",
"id": "cullleaves",
"version": "${version}",
"name": "Fast Leaves",
"name": "Cull Leaves",
"description": "Adds culling to leaf blocks, providing a huge performance boost over vanilla.",
"authors": [
"Motschen",
@@ -11,16 +11,16 @@
],
"contact": {
"homepage": "https://www.midnightdust.eu/",
"sources": "https://github.com/TeamMidnightDust/FastLeaves",
"issues": "https://github.com/TeamMidnightDust/FastLeaves/issues"
"sources": "https://github.com/TeamMidnightDust/CullLeaves",
"issues": "https://github.com/TeamMidnightDust/CullLeaves/issues"
},
"license": "MIT",
"icon": "assets/fastleaves/icon.png",
"icon": "assets/cullleaves/icon.png",
"environment": "client",
"mixins": [
"fastleaves.mixins.json"
"cullleaves.mixins.json"
]
}