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 # Smart Leaves
=======
# Cull Leaves
>>>>>>> Stashed changes
Adds culling to leaf blocks, providing a huge performance boost over vanilla. 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 Properties
mod_version = 1.0.0 mod_version = 1.0.0
maven_group = eu.midnightdust maven_group = eu.midnightdust
archives_base_name = fastleaves archives_base_name = smartleaves
# Dependencies # Dependencies
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api # 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.EnvType;
import net.fabricmc.api.Environment; 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, "required": true,
"package": "eu.midnightdust.fastleaves.mixin", "package": "eu.midnightdust.cullleaves.mixin",
"compatibilityLevel": "JAVA_8", "compatibilityLevel": "JAVA_8",
"client": [ "client": [
"MixinLeavesBlock" "MixinLeavesBlock"

View File

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