diff --git a/src/Textureless-LabPbr-32x.pack.yml b/src/Textureless-LabPbr-32x.pack.yml index 70d2abe0..8441f4f2 100644 --- a/src/Textureless-LabPbr-32x.pack.yml +++ b/src/Textureless-LabPbr-32x.pack.yml @@ -12,7 +12,8 @@ encoding: albedo-red: {} albedo-green: {} albedo-blue: {} - height: {} + height: + sampler: bilinear occlusion: {} normal-x: {} normal-y: {} diff --git a/src/assets/minecraft/blockstates/bedrock.json b/src/assets/minecraft/blockstates/bedrock.json new file mode 100644 index 00000000..ccb0f657 --- /dev/null +++ b/src/assets/minecraft/blockstates/bedrock.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "block/bedrock" + } + } +} \ No newline at end of file diff --git a/src/assets/minecraft/blockstates/farmland.json b/src/assets/minecraft/blockstates/farmland.json new file mode 100644 index 00000000..bb9cd0d9 --- /dev/null +++ b/src/assets/minecraft/blockstates/farmland.json @@ -0,0 +1,28 @@ +{ + "variants": { + "moisture=0": { + "model": "block/farmland" + }, + "moisture=1": { + "model": "block/farmland_moist_1" + }, + "moisture=2": { + "model": "block/farmland_moist_2" + }, + "moisture=3": { + "model": "block/farmland_moist_3" + }, + "moisture=4": { + "model": "block/farmland_moist_4" + }, + "moisture=5": { + "model": "block/farmland_moist_5" + }, + "moisture=6": { + "model": "block/farmland_moist_6" + }, + "moisture=7": { + "model": "block/farmland_moist_7" + } + } +} \ No newline at end of file diff --git a/src/assets/minecraft/models/block/farmland_moist_1.json b/src/assets/minecraft/models/block/farmland_moist_1.json new file mode 100644 index 00000000..b675a7a8 --- /dev/null +++ b/src/assets/minecraft/models/block/farmland_moist_1.json @@ -0,0 +1,7 @@ +{ + "parent": "block/template_farmland", + "textures": { + "dirt": "block/dirt", + "top": "block/farmland_moist/1" + } +} \ No newline at end of file diff --git a/src/assets/minecraft/models/block/farmland_moist_2.json b/src/assets/minecraft/models/block/farmland_moist_2.json new file mode 100644 index 00000000..33f0d499 --- /dev/null +++ b/src/assets/minecraft/models/block/farmland_moist_2.json @@ -0,0 +1,7 @@ +{ + "parent": "block/template_farmland", + "textures": { + "dirt": "block/dirt", + "top": "block/farmland_moist/2" + } +} \ No newline at end of file diff --git a/src/assets/minecraft/models/block/farmland_moist_3.json b/src/assets/minecraft/models/block/farmland_moist_3.json new file mode 100644 index 00000000..f02e8295 --- /dev/null +++ b/src/assets/minecraft/models/block/farmland_moist_3.json @@ -0,0 +1,7 @@ +{ + "parent": "block/template_farmland", + "textures": { + "dirt": "block/dirt", + "top": "block/farmland_moist/3" + } +} \ No newline at end of file diff --git a/src/assets/minecraft/models/block/farmland_moist_4.json b/src/assets/minecraft/models/block/farmland_moist_4.json new file mode 100644 index 00000000..8b631140 --- /dev/null +++ b/src/assets/minecraft/models/block/farmland_moist_4.json @@ -0,0 +1,7 @@ +{ + "parent": "block/template_farmland", + "textures": { + "dirt": "block/dirt", + "top": "block/farmland_moist/4" + } +} \ No newline at end of file diff --git a/src/assets/minecraft/models/block/farmland_moist_5.json b/src/assets/minecraft/models/block/farmland_moist_5.json new file mode 100644 index 00000000..5fb4e16c --- /dev/null +++ b/src/assets/minecraft/models/block/farmland_moist_5.json @@ -0,0 +1,7 @@ +{ + "parent": "block/template_farmland", + "textures": { + "dirt": "block/dirt", + "top": "block/farmland_moist/5" + } +} \ No newline at end of file diff --git a/src/assets/minecraft/models/block/farmland_moist_6.json b/src/assets/minecraft/models/block/farmland_moist_6.json new file mode 100644 index 00000000..3d4f1213 --- /dev/null +++ b/src/assets/minecraft/models/block/farmland_moist_6.json @@ -0,0 +1,7 @@ +{ + "parent": "block/template_farmland", + "textures": { + "dirt": "block/dirt", + "top": "block/farmland_moist/6" + } +} \ No newline at end of file diff --git a/src/assets/minecraft/models/block/farmland_moist_7.json b/src/assets/minecraft/models/block/farmland_moist_7.json new file mode 100644 index 00000000..255bcd6c --- /dev/null +++ b/src/assets/minecraft/models/block/farmland_moist_7.json @@ -0,0 +1,7 @@ +{ + "parent": "block/template_farmland", + "textures": { + "dirt": "block/dirt", + "top": "block/farmland_moist/7" + } +} \ No newline at end of file diff --git a/src/assets/minecraft/models/item/bedrock.json b/src/assets/minecraft/models/item/bedrock.json new file mode 100644 index 00000000..ee664509 --- /dev/null +++ b/src/assets/minecraft/models/item/bedrock.json @@ -0,0 +1,6 @@ +{ + "parent": "block/bedrock", + "textures": { + "all": "block/bedrock_inventory" + } +} \ No newline at end of file diff --git a/src/assets/minecraft/textures/block/bedrock.pbr.yml b/src/assets/minecraft/textures/block/bedrock.pbr.yml deleted file mode 100644 index 394e2034..00000000 --- a/src/assets/minecraft/textures/block/bedrock.pbr.yml +++ /dev/null @@ -1,10 +0,0 @@ -alpha: - value: 255 -albedo: - value-red: 30 - value-green: 30 - value-blue: 30 -height: - value: 0 -normal: - noise: 10 diff --git a/src/assets/minecraft/textures/block/bedrock/albedo.png b/src/assets/minecraft/textures/block/bedrock/albedo.png new file mode 100644 index 00000000..fec00774 Binary files /dev/null and b/src/assets/minecraft/textures/block/bedrock/albedo.png differ diff --git a/src/assets/minecraft/textures/block/bedrock/f0.png b/src/assets/minecraft/textures/block/bedrock/f0.png new file mode 100644 index 00000000..a8e26801 Binary files /dev/null and b/src/assets/minecraft/textures/block/bedrock/f0.png differ diff --git a/src/assets/minecraft/textures/block/bedrock/height.png b/src/assets/minecraft/textures/block/bedrock/height.png new file mode 100644 index 00000000..d30568c0 Binary files /dev/null and b/src/assets/minecraft/textures/block/bedrock/height.png differ diff --git a/src/assets/minecraft/textures/block/bedrock/pbr.yml b/src/assets/minecraft/textures/block/bedrock/pbr.yml new file mode 100644 index 00000000..effaea47 --- /dev/null +++ b/src/assets/minecraft/textures/block/bedrock/pbr.yml @@ -0,0 +1,19 @@ +create-inventory: true +alpha: + value: 255 +albedo: {} +height: + scale: 0.4 +normal: + strength: 0.4 + noise: 4 + filter: sobel-low +occlusion: + quality: 0.1 + z-bias: 0.02 + z-scale: 3 + step-distance: 0.2 +smooth: {} +f0: {} +porosity: + value: 0.3 diff --git a/src/assets/minecraft/textures/block/bedrock/smooth.png b/src/assets/minecraft/textures/block/bedrock/smooth.png new file mode 100644 index 00000000..ab8df8c1 Binary files /dev/null and b/src/assets/minecraft/textures/block/bedrock/smooth.png differ diff --git a/src/assets/minecraft/textures/block/beehive_side/albedo.png b/src/assets/minecraft/textures/block/beehive_side/albedo.png new file mode 100644 index 00000000..f1607307 Binary files /dev/null and b/src/assets/minecraft/textures/block/beehive_side/albedo.png differ diff --git a/src/assets/minecraft/textures/block/beehive_side/f0.png b/src/assets/minecraft/textures/block/beehive_side/f0.png new file mode 100644 index 00000000..6014d10e Binary files /dev/null and b/src/assets/minecraft/textures/block/beehive_side/f0.png differ diff --git a/src/assets/minecraft/textures/block/beehive_side/height.png b/src/assets/minecraft/textures/block/beehive_side/height.png new file mode 100644 index 00000000..b4110bba Binary files /dev/null and b/src/assets/minecraft/textures/block/beehive_side/height.png differ diff --git a/src/assets/minecraft/textures/block/beehive_side/metal.png b/src/assets/minecraft/textures/block/beehive_side/metal.png new file mode 100644 index 00000000..ff53f82c Binary files /dev/null and b/src/assets/minecraft/textures/block/beehive_side/metal.png differ diff --git a/src/assets/minecraft/textures/block/beehive_side/pbr.yml b/src/assets/minecraft/textures/block/beehive_side/pbr.yml new file mode 100644 index 00000000..5c120933 --- /dev/null +++ b/src/assets/minecraft/textures/block/beehive_side/pbr.yml @@ -0,0 +1,21 @@ +alpha: + value: 255 +albedo: {} +height: + scale: 0.2 + edge-fade-x: 0.2 + edge-fade-y: 0.2 +normal: + strength: 0.8 + filter: sobel-high +occlusion: + quality: 0.1 + z-bias: 0.02 + z-scale: 2 + step-distance: 0.2 +smooth: {} +f0: {} +porosity: + value: 0.8 +wrap-x: false +wrap-y: false diff --git a/src/assets/minecraft/textures/block/beehive_side/smooth.png b/src/assets/minecraft/textures/block/beehive_side/smooth.png new file mode 100644 index 00000000..5f4c9658 Binary files /dev/null and b/src/assets/minecraft/textures/block/beehive_side/smooth.png differ diff --git a/src/assets/minecraft/textures/block/brewing_stand/albedo.png b/src/assets/minecraft/textures/block/brewing_stand/albedo.png new file mode 100644 index 00000000..55906162 Binary files /dev/null and b/src/assets/minecraft/textures/block/brewing_stand/albedo.png differ diff --git a/src/assets/minecraft/textures/block/brewing_stand/alpha.png b/src/assets/minecraft/textures/block/brewing_stand/alpha.png new file mode 100644 index 00000000..c604893a Binary files /dev/null and b/src/assets/minecraft/textures/block/brewing_stand/alpha.png differ diff --git a/src/assets/minecraft/textures/block/brewing_stand/bump.png b/src/assets/minecraft/textures/block/brewing_stand/bump.png new file mode 100644 index 00000000..bbe8db39 Binary files /dev/null and b/src/assets/minecraft/textures/block/brewing_stand/bump.png differ diff --git a/src/assets/minecraft/textures/block/brewing_stand/emissive.png b/src/assets/minecraft/textures/block/brewing_stand/emissive.png new file mode 100644 index 00000000..b9e78dcc Binary files /dev/null and b/src/assets/minecraft/textures/block/brewing_stand/emissive.png differ diff --git a/src/assets/minecraft/textures/block/brewing_stand/f0.png b/src/assets/minecraft/textures/block/brewing_stand/f0.png new file mode 100644 index 00000000..e03955bf Binary files /dev/null and b/src/assets/minecraft/textures/block/brewing_stand/f0.png differ diff --git a/src/assets/minecraft/textures/block/brewing_stand/metal.png b/src/assets/minecraft/textures/block/brewing_stand/metal.png new file mode 100644 index 00000000..5de606c2 Binary files /dev/null and b/src/assets/minecraft/textures/block/brewing_stand/metal.png differ diff --git a/src/assets/minecraft/textures/block/brewing_stand/pbr.yml b/src/assets/minecraft/textures/block/brewing_stand/pbr.yml new file mode 100644 index 00000000..602c37b9 --- /dev/null +++ b/src/assets/minecraft/textures/block/brewing_stand/pbr.yml @@ -0,0 +1,11 @@ +normal: + filter: sobel-low +occlusion: + quality: 0.1 + z-bias: 0.02 + z-scale: 3 + step-distance: 0.2 +emissive: + scale: 0.4 +wrap-x: false +wrap-y: false diff --git a/src/assets/minecraft/textures/block/brewing_stand/smooth.png b/src/assets/minecraft/textures/block/brewing_stand/smooth.png new file mode 100644 index 00000000..fc60845c Binary files /dev/null and b/src/assets/minecraft/textures/block/brewing_stand/smooth.png differ diff --git a/src/assets/minecraft/textures/block/brewing_stand_base/height.png b/src/assets/minecraft/textures/block/brewing_stand_base/height.png new file mode 100644 index 00000000..defc84fe Binary files /dev/null and b/src/assets/minecraft/textures/block/brewing_stand_base/height.png differ diff --git a/src/assets/minecraft/textures/block/brewing_stand_base/pbr.yml b/src/assets/minecraft/textures/block/brewing_stand_base/pbr.yml new file mode 100644 index 00000000..44f21c0f --- /dev/null +++ b/src/assets/minecraft/textures/block/brewing_stand_base/pbr.yml @@ -0,0 +1,22 @@ +alpha: + value: 255 +albedo: + value-red: 124 + value-green: 114 + value-blue: 114 +height: + scale: 0.7 +normal: + noise: 3 + filter: sobel-high +occlusion: + quality: 0.1 + z-bias: 0.02 + z-scale: 3 + step-distance: 0.2 +smooth: + value: 0.7 +metal: + value: 230 +porosity: + value: 0 diff --git a/src/assets/minecraft/textures/block/cauldron_bottom/alpha.png b/src/assets/minecraft/textures/block/cauldron_bottom/alpha.png new file mode 100644 index 00000000..8528e5e6 Binary files /dev/null and b/src/assets/minecraft/textures/block/cauldron_bottom/alpha.png differ diff --git a/src/assets/minecraft/textures/block/cauldron_bottom/pbr.yml b/src/assets/minecraft/textures/block/cauldron_bottom/pbr.yml new file mode 100644 index 00000000..74bba825 --- /dev/null +++ b/src/assets/minecraft/textures/block/cauldron_bottom/pbr.yml @@ -0,0 +1,21 @@ +albedo: + value-red: 85 + value-green: 83 + value-blue: 83 +height: {} +normal: + noise: 3 + filter: sobel-high +occlusion: + quality: 0.1 + z-bias: 0.02 + z-scale: 1 + step-distance: 0.2 +smooth: + value: 0.34 +metal: + value: 230 +porosity: + value: 0 +wrap-x: false +wrap-y: false diff --git a/src/assets/minecraft/textures/block/cauldron_inner/pbr.yml b/src/assets/minecraft/textures/block/cauldron_inner/pbr.yml new file mode 100644 index 00000000..30c868b5 --- /dev/null +++ b/src/assets/minecraft/textures/block/cauldron_inner/pbr.yml @@ -0,0 +1,23 @@ +alpha: + value: 255 +albedo: + value-red: 85 + value-green: 83 + value-blue: 83 +height: {} +normal: + noise: 3 + filter: sobel-high +occlusion: + quality: 0.1 + z-bias: 0.02 + z-scale: 1 + step-distance: 0.2 +smooth: + value: 0.34 +metal: + value: 230 +porosity: + value: 0 +wrap-x: false +wrap-y: false diff --git a/src/assets/minecraft/textures/block/cauldron_side/bump.png b/src/assets/minecraft/textures/block/cauldron_side/bump.png new file mode 100644 index 00000000..a53127c4 Binary files /dev/null and b/src/assets/minecraft/textures/block/cauldron_side/bump.png differ diff --git a/src/assets/minecraft/textures/block/cauldron_side/pbr.yml b/src/assets/minecraft/textures/block/cauldron_side/pbr.yml new file mode 100644 index 00000000..0201facb --- /dev/null +++ b/src/assets/minecraft/textures/block/cauldron_side/pbr.yml @@ -0,0 +1,24 @@ +alpha: + value: 255 +albedo: + value-red: 85 + value-green: 83 + value-blue: 83 +height: + scale: 0.8 +normal: + strength: 1.5 + noise: 3 + filter: sobel3 +occlusion: + quality: 0.1 + z-bias: 0.02 + z-scale: 5 + step-distance: 0.2 +smooth: {} +metal: + value: 230 +porosity: + value: 0 +wrap-x: false +wrap-y: false diff --git a/src/assets/minecraft/textures/block/cauldron_side/smooth.png b/src/assets/minecraft/textures/block/cauldron_side/smooth.png new file mode 100644 index 00000000..94e21af1 Binary files /dev/null and b/src/assets/minecraft/textures/block/cauldron_side/smooth.png differ diff --git a/src/assets/minecraft/textures/block/cauldron_top/alpha.png b/src/assets/minecraft/textures/block/cauldron_top/alpha.png new file mode 100644 index 00000000..a50d7165 Binary files /dev/null and b/src/assets/minecraft/textures/block/cauldron_top/alpha.png differ diff --git a/src/assets/minecraft/textures/block/cauldron_top/bump.png b/src/assets/minecraft/textures/block/cauldron_top/bump.png new file mode 100644 index 00000000..70428627 Binary files /dev/null and b/src/assets/minecraft/textures/block/cauldron_top/bump.png differ diff --git a/src/assets/minecraft/textures/block/cauldron_top/pbr.yml b/src/assets/minecraft/textures/block/cauldron_top/pbr.yml new file mode 100644 index 00000000..c9e77f75 --- /dev/null +++ b/src/assets/minecraft/textures/block/cauldron_top/pbr.yml @@ -0,0 +1,21 @@ +albedo: + value-red: 85 + value-green: 83 + value-blue: 83 +height: {} +normal: + noise: 3 + filter: sobel-high +occlusion: + quality: 0.1 + z-bias: 0.02 + z-scale: 1 + step-distance: 0.2 +smooth: + value: 0.67 +metal: + value: 230 +porosity: + value: 0 +wrap-x: false +wrap-y: false diff --git a/src/assets/minecraft/textures/block/farmland/pbr.yml b/src/assets/minecraft/textures/block/farmland/pbr.yml index 9c3f9824..26078834 100644 --- a/src/assets/minecraft/textures/block/farmland/pbr.yml +++ b/src/assets/minecraft/textures/block/farmland/pbr.yml @@ -15,5 +15,5 @@ smooth: f0: value: 0.07 porosity: - value: 0.78 + value: 0.8 create-inventory: true diff --git a/src/assets/minecraft/textures/block/farmland_moist/1.pbr.yml b/src/assets/minecraft/textures/block/farmland_moist/1.pbr.yml new file mode 100644 index 00000000..7593792a --- /dev/null +++ b/src/assets/minecraft/textures/block/farmland_moist/1.pbr.yml @@ -0,0 +1,19 @@ +alpha: + value: 255 +height: + texture: height.png + scale: 0.4 +normal: + strength: 0.5 + noise: 3 +occlusion: + quality: 0.1 + z-bias: 0.02 + z-scale: 2 + step-distance: 0.2 +smooth: + value: 0.08 +f0: + value: 0.07 +porosity: + value: 0.7 diff --git a/src/assets/minecraft/textures/block/farmland_moist/1.png b/src/assets/minecraft/textures/block/farmland_moist/1.png new file mode 100644 index 00000000..d69a1d78 Binary files /dev/null and b/src/assets/minecraft/textures/block/farmland_moist/1.png differ diff --git a/src/assets/minecraft/textures/block/farmland_moist/2.pbr.yml b/src/assets/minecraft/textures/block/farmland_moist/2.pbr.yml new file mode 100644 index 00000000..aad45c8d --- /dev/null +++ b/src/assets/minecraft/textures/block/farmland_moist/2.pbr.yml @@ -0,0 +1,19 @@ +alpha: + value: 255 +height: + texture: height.png + scale: 0.4 +normal: + strength: 0.5 + noise: 3 +occlusion: + quality: 0.1 + z-bias: 0.02 + z-scale: 2 + step-distance: 0.2 +smooth: + value: 0.14 +f0: + value: 0.07 +porosity: + value: 0.6 diff --git a/src/assets/minecraft/textures/block/farmland_moist/2.png b/src/assets/minecraft/textures/block/farmland_moist/2.png new file mode 100644 index 00000000..e60484d2 Binary files /dev/null and b/src/assets/minecraft/textures/block/farmland_moist/2.png differ diff --git a/src/assets/minecraft/textures/block/farmland_moist/3.pbr.yml b/src/assets/minecraft/textures/block/farmland_moist/3.pbr.yml new file mode 100644 index 00000000..632879f2 --- /dev/null +++ b/src/assets/minecraft/textures/block/farmland_moist/3.pbr.yml @@ -0,0 +1,19 @@ +alpha: + value: 255 +height: + texture: height.png + scale: 0.4 +normal: + strength: 0.5 + noise: 3 +occlusion: + quality: 0.1 + z-bias: 0.02 + z-scale: 2 + step-distance: 0.2 +smooth: + value: 0.2 +f0: + value: 0.07 +porosity: + value: 0.5 diff --git a/src/assets/minecraft/textures/block/farmland_moist/3.png b/src/assets/minecraft/textures/block/farmland_moist/3.png new file mode 100644 index 00000000..aaa0772a Binary files /dev/null and b/src/assets/minecraft/textures/block/farmland_moist/3.png differ diff --git a/src/assets/minecraft/textures/block/farmland_moist/4.pbr.yml b/src/assets/minecraft/textures/block/farmland_moist/4.pbr.yml new file mode 100644 index 00000000..eb435e18 --- /dev/null +++ b/src/assets/minecraft/textures/block/farmland_moist/4.pbr.yml @@ -0,0 +1,19 @@ +alpha: + value: 255 +height: + texture: height.png + scale: 0.4 +normal: + strength: 0.5 + noise: 3 +occlusion: + quality: 0.1 + z-bias: 0.02 + z-scale: 2 + step-distance: 0.2 +smooth: + value: 0.26 +f0: + value: 0.07 +porosity: + value: 0.4 diff --git a/src/assets/minecraft/textures/block/farmland_moist/4.png b/src/assets/minecraft/textures/block/farmland_moist/4.png new file mode 100644 index 00000000..0710bc13 Binary files /dev/null and b/src/assets/minecraft/textures/block/farmland_moist/4.png differ diff --git a/src/assets/minecraft/textures/block/farmland_moist/5.pbr.yml b/src/assets/minecraft/textures/block/farmland_moist/5.pbr.yml new file mode 100644 index 00000000..54a3b0cf --- /dev/null +++ b/src/assets/minecraft/textures/block/farmland_moist/5.pbr.yml @@ -0,0 +1,19 @@ +alpha: + value: 255 +height: + texture: height.png + scale: 0.4 +normal: + strength: 0.5 + noise: 3 +occlusion: + quality: 0.1 + z-bias: 0.02 + z-scale: 2 + step-distance: 0.2 +smooth: + value: 0.32 +f0: + value: 0.07 +porosity: + value: 0.3 diff --git a/src/assets/minecraft/textures/block/farmland_moist/5.png b/src/assets/minecraft/textures/block/farmland_moist/5.png new file mode 100644 index 00000000..def90cdf Binary files /dev/null and b/src/assets/minecraft/textures/block/farmland_moist/5.png differ diff --git a/src/assets/minecraft/textures/block/farmland_moist/6.pbr.yml b/src/assets/minecraft/textures/block/farmland_moist/6.pbr.yml new file mode 100644 index 00000000..5770101b --- /dev/null +++ b/src/assets/minecraft/textures/block/farmland_moist/6.pbr.yml @@ -0,0 +1,19 @@ +alpha: + value: 255 +height: + texture: height.png + scale: 0.4 +normal: + strength: 0.5 + noise: 3 +occlusion: + quality: 0.1 + z-bias: 0.02 + z-scale: 2 + step-distance: 0.2 +smooth: + value: 0.37 +f0: + value: 0.07 +porosity: + value: 0.15 diff --git a/src/assets/minecraft/textures/block/farmland_moist/6.png b/src/assets/minecraft/textures/block/farmland_moist/6.png new file mode 100644 index 00000000..57dc112e Binary files /dev/null and b/src/assets/minecraft/textures/block/farmland_moist/6.png differ diff --git a/src/assets/minecraft/textures/block/farmland_moist/pbr.yml b/src/assets/minecraft/textures/block/farmland_moist/7.pbr.yml similarity index 90% rename from src/assets/minecraft/textures/block/farmland_moist/pbr.yml rename to src/assets/minecraft/textures/block/farmland_moist/7.pbr.yml index b2ba2775..7a583f88 100644 --- a/src/assets/minecraft/textures/block/farmland_moist/pbr.yml +++ b/src/assets/minecraft/textures/block/farmland_moist/7.pbr.yml @@ -1,6 +1,7 @@ alpha: value: 255 height: + texture: height.png scale: 0.4 normal: strength: 0.5 diff --git a/src/assets/minecraft/textures/block/farmland_moist/albedo.png b/src/assets/minecraft/textures/block/farmland_moist/7.png similarity index 100% rename from src/assets/minecraft/textures/block/farmland_moist/albedo.png rename to src/assets/minecraft/textures/block/farmland_moist/7.png