From 0fa577d1f26162a47165baa52abfb767daa21b42 Mon Sep 17 00:00:00 2001 From: Frost-ZX <30585462+Frost-ZX@users.noreply.github.com> Date: Mon, 12 Sep 2022 22:56:24 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E7=A7=BB=E5=8A=A8=E9=80=8F?= =?UTF-8?q?=E6=98=8E=E7=BA=B9=E7=90=86=E5=9B=BE=E7=89=87=E5=88=B0=20common?= =?UTF-8?q?=20=E6=96=87=E4=BB=B6=E5=A4=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- kubejs/startup_scripts/wheat_plus.js | 2 +- .../wheat_plus/models/block/road/base_full.json | 2 +- .../wheat_plus/models/block/road/base_half.json | 2 +- .../textures/block/{ => common}/transparent.png | Bin 4 files changed, 3 insertions(+), 3 deletions(-) rename resourcepack/assets/wheat_plus/textures/block/{ => common}/transparent.png (100%) diff --git a/kubejs/startup_scripts/wheat_plus.js b/kubejs/startup_scripts/wheat_plus.js index 267d23b..f71f858 100644 --- a/kubejs/startup_scripts/wheat_plus.js +++ b/kubejs/startup_scripts/wheat_plus.js @@ -134,7 +134,7 @@ onEvent('block.registry', (event) => { { name: 'road_blank', label: '路 - 空白', - texturePath: 'transparent', + texturePath: 'common/transparent', hasNormal: true, // 普通 / 直线 hasSlant: false, // 斜线 hasSide: false, // 侧边纹理 diff --git a/resourcepack/assets/wheat_plus/models/block/road/base_full.json b/resourcepack/assets/wheat_plus/models/block/road/base_full.json index 37c055f..c5c52e3 100644 --- a/resourcepack/assets/wheat_plus/models/block/road/base_full.json +++ b/resourcepack/assets/wheat_plus/models/block/road/base_full.json @@ -6,7 +6,7 @@ "particle": "wheat_plus:block/road/base", "base": "wheat_plus:block/road/base", "content": "wheat_plus:block/road/content_gray", - "side": "wheat_plus:block/transparent" + "side": "wheat_plus:block/common/transparent" }, "elements": [ { diff --git a/resourcepack/assets/wheat_plus/models/block/road/base_half.json b/resourcepack/assets/wheat_plus/models/block/road/base_half.json index 8f2170d..ee18c09 100644 --- a/resourcepack/assets/wheat_plus/models/block/road/base_half.json +++ b/resourcepack/assets/wheat_plus/models/block/road/base_half.json @@ -6,7 +6,7 @@ "particle": "wheat_plus:block/road/base", "base": "wheat_plus:block/road/base", "content": "wheat_plus:block/road/content_gray", - "side": "wheat_plus:block/transparent" + "side": "wheat_plus:block/common/transparent" }, "elements": [ { diff --git a/resourcepack/assets/wheat_plus/textures/block/transparent.png b/resourcepack/assets/wheat_plus/textures/block/common/transparent.png similarity index 100% rename from resourcepack/assets/wheat_plus/textures/block/transparent.png rename to resourcepack/assets/wheat_plus/textures/block/common/transparent.png