From a114af59bee2c3863c221efb8cd405afd8fff3e0 Mon Sep 17 00:00:00 2001 From: StarskyXIII <71606873+StarskyXIII@users.noreply.github.com> Date: Wed, 15 Jan 2025 06:17:11 +0800 Subject: [PATCH] Backport #8322 to Forge 1.20.1: Use Forge face data instead of custom unlit quad hooks (#8325) --- .../java/appeng/hooks/UnlitQuadHooks.java | 143 --- .../mixins/unlitquad/BlockModelMixin.java | 53 - .../BlockPartFaceDeserializerMixin.java | 54 -- .../mixins/unlitquad/ModelManagerMixin.java | 55 -- src/main/resources/ae2.mixins.json | 3 - .../ae2/models/block/chest/lights_on.json | 6 +- .../controller/controller_block_lights.json | 12 +- .../controller_column_conflicted.json | 12 +- .../controller/controller_column_online.json | 12 +- .../block/crystal_resonance_generator.json | 26 +- .../block/molecular_assembler_lights.json | 12 +- .../ae2/models/block/mysterious_cube.json | 912 +++++++++--------- .../part/conversion_monitor_locked_on.json | 6 +- .../models/part/conversion_monitor_on.json | 6 +- .../ae2/models/part/crafting_terminal_on.json | 6 +- .../part/display_status_has_channel.json | 8 +- .../ae2/models/part/display_status_on.json | 8 +- .../models/part/export_bus_has_channel.json | 8 +- .../assets/ae2/models/part/export_bus_on.json | 8 +- .../models/part/import_bus_has_channel.json | 8 +- .../assets/ae2/models/part/import_bus_on.json | 8 +- .../models/part/interface_has_channel.json | 8 +- .../assets/ae2/models/part/interface_on.json | 8 +- .../models/part/level_emitter_base_on.json | 10 +- .../level_emitter_status_has_channel.json | 8 +- .../models/part/level_emitter_status_on.json | 8 +- .../ae2/models/part/monitor_bright_on.json | 2 +- .../ae2/models/part/monitor_dark_on.json | 2 +- .../ae2/models/part/monitor_medium_on.json | 2 +- .../p2p/p2p_tunnel_status_has_channel.json | 8 +- .../models/part/p2p/p2p_tunnel_status_on.json | 8 +- .../part/pattern_access_terminal_on.json | 6 +- .../part/pattern_encoding_terminal_on.json | 6 +- .../models/part/storage_bus_has_channel.json | 8 +- .../ae2/models/part/storage_bus_on.json | 8 +- .../part/storage_monitor_locked_on.json | 6 +- .../ae2/models/part/storage_monitor_on.json | 6 +- .../assets/ae2/models/part/terminal_on.json | 6 +- .../part/toggle_bus_status_has_channel.json | 8 +- .../ae2/models/part/toggle_bus_status_on.json | 8 +- .../part/transition_plane_has_channel.json | 8 +- .../ae2/models/part/transition_plane_on.json | 8 +- 42 files changed, 616 insertions(+), 892 deletions(-) delete mode 100644 src/main/java/appeng/hooks/UnlitQuadHooks.java delete mode 100644 src/main/java/appeng/mixins/unlitquad/BlockModelMixin.java delete mode 100644 src/main/java/appeng/mixins/unlitquad/BlockPartFaceDeserializerMixin.java delete mode 100644 src/main/java/appeng/mixins/unlitquad/ModelManagerMixin.java diff --git a/src/main/java/appeng/hooks/UnlitQuadHooks.java b/src/main/java/appeng/hooks/UnlitQuadHooks.java deleted file mode 100644 index 9bd2f143f9a..00000000000 --- a/src/main/java/appeng/hooks/UnlitQuadHooks.java +++ /dev/null @@ -1,143 +0,0 @@ -/* - * This file is part of Applied Energistics 2. - * Copyright (c) 2021, TeamAppliedEnergistics, All rights reserved. - * - * Applied Energistics 2 is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * Applied Energistics 2 is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with Applied Energistics 2. If not, see . - */ - -package appeng.hooks; - -import com.google.gson.JsonElement; -import com.google.gson.JsonObject; -import com.mojang.blaze3d.vertex.DefaultVertexFormat; -import com.mojang.blaze3d.vertex.VertexFormat; -import com.mojang.blaze3d.vertex.VertexFormatElement; -import com.mojang.blaze3d.vertex.VertexFormatElement.Type; - -import net.minecraft.client.renderer.LightTexture; -import net.minecraft.client.renderer.block.model.BakedQuad; -import net.minecraft.client.renderer.block.model.BlockElementFace; -import net.minecraft.client.renderer.block.model.BlockFaceUV; -import net.minecraft.client.renderer.texture.TextureAtlasSprite; -import net.minecraft.client.resources.model.ModelBakery; -import net.minecraft.core.Direction; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.util.GsonHelper; - -import appeng.core.AppEng; - -/** - * Implementation details of allowing quads to be defined as "unlit" in JSON models by specifying an "unlit" boolean - * property on the face. - */ -public class UnlitQuadHooks { - - /** - * Offset into the vertex data (which is represented as integers). - */ - private static final int LIGHT_OFFSET = getLightOffset(); - - // Lightmap texture coordinate with full intensity light leading to no drop in - // brightness - private static final int UNLIT_LIGHT_UV = LightTexture.pack(15, 15); - - /** - * Thread-Local flag to indicate that an enhanced Applied Energistics model is currently being deserialized. - */ - private static final ThreadLocal ENABLE_UNLIT_EXTENSIONS = new ThreadLocal<>(); - - /** - * Notify the unlit model system that a specific model is about to be deserialized by {@link ModelBakery}. - */ - public static void beginDeserializingModel(ResourceLocation location) { - String namespace = location.getNamespace(); - if (namespace.equals(AppEng.MOD_ID)) { - ENABLE_UNLIT_EXTENSIONS.set(true); - } - } - - /** - * Notify the unlit model system that deserialization of a model has ended. - */ - public static void endDeserializingModel() { - ENABLE_UNLIT_EXTENSIONS.set(false); - } - - public static boolean isUnlitExtensionEnabled() { - Boolean b = ENABLE_UNLIT_EXTENSIONS.get(); - return b != null && b; - } - - public static BlockElementFace enhanceModelElementFace(BlockElementFace modelElement, JsonElement jsonElement) { - JsonObject jsonObject = jsonElement.getAsJsonObject(); - if (GsonHelper.getAsBoolean(jsonObject, "unlit", false)) { - return new UnlitBlockPartFace(modelElement.cullForDirection, modelElement.tintIndex, modelElement.texture, - modelElement.uv); - } - return modelElement; - } - - /** - * Creates a new quad from the given quad and pre-bakes it to not be affected by lighting (neither diffuse lighting - * nor the prebaked lightmap). This works on the assumption that Vanilla will not modify a quad's lightmap data if - * it's not zero. - */ - public static BakedQuad makeUnlit(BakedQuad quad) { - int[] vertexData = quad.getVertices().clone(); - int stride = DefaultVertexFormat.BLOCK.getIntegerSize(); - // Set the pre-baked texture coords for the lightmap. - // Vanilla will not overwrite them if they are non-zero - for (int i = 0; i < 4; i++) { - vertexData[stride * i + LIGHT_OFFSET] = UNLIT_LIGHT_UV; - } - TextureAtlasSprite sprite = quad.getSprite(); - // Copy the quad to disable diffuse lighting - return new BakedQuad(vertexData, quad.getTintIndex(), quad.getDirection(), sprite, - false /* diffuse lighting */); - } - - /** - * This subclass is used as a marker to indicate this face deserialized from JSON is supposed to be unlit, which - * translates to processing by {@link #makeUnlit(BakedQuad)}. - */ - public static class UnlitBlockPartFace extends BlockElementFace { - public UnlitBlockPartFace(Direction cullFaceIn, int tintIndexIn, String textureIn, BlockFaceUV blockFaceUVIn) { - super(cullFaceIn, tintIndexIn, textureIn, blockFaceUVIn); - } - } - - /** - * Find the index in the BakedQuad vertex data (for vertex 0) where the lightmap coordinates are. Assumes the BLOCK - * vertex format. - */ - private static int getLightOffset() { - VertexFormat format = DefaultVertexFormat.BLOCK; - int offset = 0; - for (VertexFormatElement element : format.getElements()) { - // TEX_2SB is the lightmap vertex element - if (element == DefaultVertexFormat.ELEMENT_UV2) { - if (element.getType() != Type.SHORT) { - throw new UnsupportedOperationException("Expected light map format to be of type SHORT"); - } - if (offset % 4 != 0) { - throw new UnsupportedOperationException("Expected light map offset to be 4-byte aligned"); - } - return offset / 4; - } - offset += element.getByteSize(); - } - throw new UnsupportedOperationException("Failed to find the lightmap index in the block vertex format"); - } - -} diff --git a/src/main/java/appeng/mixins/unlitquad/BlockModelMixin.java b/src/main/java/appeng/mixins/unlitquad/BlockModelMixin.java deleted file mode 100644 index b87a5237f7a..00000000000 --- a/src/main/java/appeng/mixins/unlitquad/BlockModelMixin.java +++ /dev/null @@ -1,53 +0,0 @@ -/* - * This file is part of Applied Energistics 2. - * Copyright (c) 2021, TeamAppliedEnergistics, All rights reserved. - * - * Applied Energistics 2 is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * Applied Energistics 2 is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with Applied Energistics 2. If not, see . - */ - -package appeng.mixins.unlitquad; - -import org.spongepowered.asm.mixin.Mixin; -import org.spongepowered.asm.mixin.injection.At; -import org.spongepowered.asm.mixin.injection.Inject; -import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; - -import net.minecraft.client.renderer.block.model.BakedQuad; -import net.minecraft.client.renderer.block.model.BlockElement; -import net.minecraft.client.renderer.block.model.BlockElementFace; -import net.minecraft.client.renderer.block.model.BlockModel; -import net.minecraft.client.renderer.texture.TextureAtlasSprite; -import net.minecraft.client.resources.model.ModelState; -import net.minecraft.core.Direction; -import net.minecraft.resources.ResourceLocation; - -import appeng.hooks.UnlitQuadHooks; - -/** - * This mixin hooks into conversion from {@link BlockElementFace} to {@link BakedQuad} to apply our unlit extensions if - * the block part face is an instance of our marker class {@link UnlitQuadHooks.UnlitBlockPartFace}. - */ -@Mixin(BlockModel.class) -public class BlockModelMixin { - - @Inject(method = "bakeFace", at = @At("RETURN"), cancellable = true, require = 1, allow = 1) - private static void onBakeFace(BlockElement partIn, BlockElementFace partFaceIn, TextureAtlasSprite spriteIn, - Direction directionIn, ModelState transformIn, ResourceLocation locationIn, - CallbackInfoReturnable cri) { - if (partFaceIn instanceof UnlitQuadHooks.UnlitBlockPartFace) { - cri.setReturnValue(UnlitQuadHooks.makeUnlit(cri.getReturnValue())); - } - } - -} diff --git a/src/main/java/appeng/mixins/unlitquad/BlockPartFaceDeserializerMixin.java b/src/main/java/appeng/mixins/unlitquad/BlockPartFaceDeserializerMixin.java deleted file mode 100644 index c84c094be3b..00000000000 --- a/src/main/java/appeng/mixins/unlitquad/BlockPartFaceDeserializerMixin.java +++ /dev/null @@ -1,54 +0,0 @@ -/* - * This file is part of Applied Energistics 2. - * Copyright (c) 2021, TeamAppliedEnergistics, All rights reserved. - * - * Applied Energistics 2 is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * Applied Energistics 2 is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with Applied Energistics 2. If not, see . - */ - -package appeng.mixins.unlitquad; - -import java.lang.reflect.Type; - -import com.google.gson.JsonDeserializationContext; -import com.google.gson.JsonElement; - -import org.spongepowered.asm.mixin.Mixin; -import org.spongepowered.asm.mixin.injection.At; -import org.spongepowered.asm.mixin.injection.Inject; -import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; - -import net.minecraft.client.renderer.block.model.BlockElementFace; -import net.minecraft.client.renderer.block.model.BlockElementFace.Deserializer; - -import appeng.hooks.UnlitQuadHooks; - -/** - * This mixin will call the hook to deserialize the unlit property, but only if we are currently deserializing an AE2 - * model. - */ -@Mixin(Deserializer.class) -public class BlockPartFaceDeserializerMixin { - - @Inject(method = "deserialize", at = @At("RETURN"), cancellable = true, allow = 1, remap = false) - public void onDeserialize(JsonElement jsonElement, Type type, JsonDeserializationContext jsonDeserializationContext, - CallbackInfoReturnable cri) { - if (!UnlitQuadHooks.isUnlitExtensionEnabled()) { - return; // Not in a model that activated the deserializer - } - - BlockElementFace modelElement = cri.getReturnValue(); - cri.setReturnValue(UnlitQuadHooks.enhanceModelElementFace(modelElement, jsonElement)); - } - -} diff --git a/src/main/java/appeng/mixins/unlitquad/ModelManagerMixin.java b/src/main/java/appeng/mixins/unlitquad/ModelManagerMixin.java deleted file mode 100644 index 24f41c0b506..00000000000 --- a/src/main/java/appeng/mixins/unlitquad/ModelManagerMixin.java +++ /dev/null @@ -1,55 +0,0 @@ -/* - * This file is part of Applied Energistics 2. - * Copyright (c) 2021, TeamAppliedEnergistics, All rights reserved. - * - * Applied Energistics 2 is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * Applied Energistics 2 is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with Applied Energistics 2. If not, see . - */ - -package appeng.mixins.unlitquad; - -import java.util.Map; - -import com.mojang.datafixers.util.Pair; - -import org.spongepowered.asm.mixin.Mixin; -import org.spongepowered.asm.mixin.injection.At; -import org.spongepowered.asm.mixin.injection.Inject; -import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; - -import net.minecraft.client.resources.model.ModelManager; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.server.packs.resources.Resource; - -import appeng.hooks.UnlitQuadHooks; - -/** - * The only job of this mixin is to only enable the unlit extensions if the model is whitelisted for it, which is - * decided in {@link UnlitQuadHooks}. - */ -@Mixin(ModelManager.class) -public class ModelManagerMixin { - - @Inject(method = { "lambda$loadBlockModels$8", "m_246478_" }, at = @At("HEAD"), allow = 1) - private static void onBeginLoadModel(Map.Entry entry, - CallbackInfoReturnable> cri) { - UnlitQuadHooks.beginDeserializingModel(entry.getKey()); - } - - @Inject(method = { "lambda$loadBlockModels$8", "m_246478_" }, at = @At("RETURN")) - private static void onEndLoadModel(Map.Entry entry, - CallbackInfoReturnable> cri) { - UnlitQuadHooks.endDeserializingModel(); - } - -} diff --git a/src/main/resources/ae2.mixins.json b/src/main/resources/ae2.mixins.json index 77e151238bf..1e613fc16cb 100644 --- a/src/main/resources/ae2.mixins.json +++ b/src/main/resources/ae2.mixins.json @@ -17,9 +17,6 @@ "UnbreakingMixin" ], "client": [ - "unlitquad.ModelManagerMixin", - "unlitquad.BlockModelMixin", - "unlitquad.BlockPartFaceDeserializerMixin", "AbstractContainerScreenMixin", "GuiGraphicsMixin", "WrappedGenericStackTooltipModIdMixin", diff --git a/src/main/resources/assets/ae2/models/block/chest/lights_on.json b/src/main/resources/assets/ae2/models/block/chest/lights_on.json index d1e061a516f..001cd0f96d1 100644 --- a/src/main/resources/assets/ae2/models/block/chest/lights_on.json +++ b/src/main/resources/assets/ae2/models/block/chest/lights_on.json @@ -12,7 +12,7 @@ "up": { "texture": "#lights_bright", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } }, @@ -23,7 +23,7 @@ "up": { "texture": "#lights_medium", "tintindex": 2, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } }, @@ -34,7 +34,7 @@ "up": { "texture": "#lights_dark", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/block/controller/controller_block_lights.json b/src/main/resources/assets/ae2/models/block/controller/controller_block_lights.json index f9b4f7eafcf..4a993837950 100644 --- a/src/main/resources/assets/ae2/models/block/controller/controller_block_lights.json +++ b/src/main/resources/assets/ae2/models/block/controller/controller_block_lights.json @@ -9,32 +9,32 @@ "down": { "texture": "#lights", "uv": [0, 0, 16, 16], - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "east": { "texture": "#lights", "uv": [0, 0, 16, 16], - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "north": { "texture": "#lights", "uv": [0, 0, 16, 16], - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "south": { "texture": "#lights", "uv": [0, 0, 16, 16], - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "up": { "texture": "#lights", "uv": [0, 0, 16, 16], - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "west": { "texture": "#lights", "uv": [0, 0, 16, 16], - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } }, "from": [0, 0, 0], diff --git a/src/main/resources/assets/ae2/models/block/controller/controller_column_conflicted.json b/src/main/resources/assets/ae2/models/block/controller/controller_column_conflicted.json index 8effbd66b4a..44d772f544e 100644 --- a/src/main/resources/assets/ae2/models/block/controller/controller_column_conflicted.json +++ b/src/main/resources/assets/ae2/models/block/controller/controller_column_conflicted.json @@ -11,32 +11,32 @@ "down": { "texture": "#lights", "uv": [0, 0, 16, 16], - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "east": { "texture": "#lights", "uv": [0, 0, 16, 16], - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "north": { "texture": "#lights", "uv": [0, 0, 16, 16], - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "south": { "texture": "#lights", "uv": [0, 0, 16, 16], - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "up": { "texture": "#lights", "uv": [0, 0, 16, 16], - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "west": { "texture": "#lights", "uv": [0, 0, 16, 16], - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } }, "from": [0, 0, 0], diff --git a/src/main/resources/assets/ae2/models/block/controller/controller_column_online.json b/src/main/resources/assets/ae2/models/block/controller/controller_column_online.json index 18e9c85aa7b..33963c37999 100644 --- a/src/main/resources/assets/ae2/models/block/controller/controller_column_online.json +++ b/src/main/resources/assets/ae2/models/block/controller/controller_column_online.json @@ -11,32 +11,32 @@ "down": { "texture": "#lights", "uv": [0, 0, 16, 16], - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "east": { "texture": "#lights", "uv": [0, 0, 16, 16], - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "north": { "texture": "#lights", "uv": [0, 0, 16, 16], - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "south": { "texture": "#lights", "uv": [0, 0, 16, 16], - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "up": { "texture": "#lights", "uv": [0, 0, 16, 16], - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "west": { "texture": "#lights", "uv": [0, 0, 16, 16], - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } }, "from": [0, 0, 0], diff --git a/src/main/resources/assets/ae2/models/block/crystal_resonance_generator.json b/src/main/resources/assets/ae2/models/block/crystal_resonance_generator.json index 670ab154358..7d6174da783 100644 --- a/src/main/resources/assets/ae2/models/block/crystal_resonance_generator.json +++ b/src/main/resources/assets/ae2/models/block/crystal_resonance_generator.json @@ -26,15 +26,31 @@ "from": [4, 4, 4], "to": [12, 16, 12], "faces": { - "north": { "uv": [8, 0, 16, 12], "texture": "#core", "unlit": true }, - "east": { "uv": [8, 0, 16, 12], "texture": "#core", "unlit": true }, - "south": { "uv": [8, 0, 16, 12], "texture": "#core", "unlit": true }, - "west": { "uv": [8, 0, 16, 12], "texture": "#core", "unlit": true }, + "north": { + "uv": [8, 0, 16, 12], + "texture": "#core", + "forge_data": { "block_light": 15, "sky_light": 15 } + }, + "east": { + "uv": [8, 0, 16, 12], + "texture": "#core", + "forge_data": { "block_light": 15, "sky_light": 15 } + }, + "south": { + "uv": [8, 0, 16, 12], + "texture": "#core", + "forge_data": { "block_light": 15, "sky_light": 15 } + }, + "west": { + "uv": [8, 0, 16, 12], + "texture": "#core", + "forge_data": { "block_light": 15, "sky_light": 15 } + }, "up": { "uv": [0, 0, 8, 8], "texture": "#core", "cullface": "up", - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } }, diff --git a/src/main/resources/assets/ae2/models/block/molecular_assembler_lights.json b/src/main/resources/assets/ae2/models/block/molecular_assembler_lights.json index fd6ccd4f8c2..09223755bad 100644 --- a/src/main/resources/assets/ae2/models/block/molecular_assembler_lights.json +++ b/src/main/resources/assets/ae2/models/block/molecular_assembler_lights.json @@ -12,37 +12,37 @@ "texture": "#all", "uv": [2.6, 2.6, 13.4, 13.4], "cullface": "down", - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "up": { "texture": "#all", "uv": [2.6, 2.6, 13.4, 13.4], "cullface": "up", - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "north": { "texture": "#all", "uv": [2.6, 2.6, 13.4, 13.4], "cullface": "north", - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "south": { "texture": "#all", "uv": [2.6, 2.6, 13.4, 13.4], "cullface": "south", - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "west": { "texture": "#all", "uv": [2.6, 2.6, 13.4, 13.4], "cullface": "west", - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "east": { "texture": "#all", "uv": [2.6, 2.6, 13.4, 13.4], "cullface": "east", - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/block/mysterious_cube.json b/src/main/resources/assets/ae2/models/block/mysterious_cube.json index ff211aed0d2..f48bfcbaa3e 100644 --- a/src/main/resources/assets/ae2/models/block/mysterious_cube.json +++ b/src/main/resources/assets/ae2/models/block/mysterious_cube.json @@ -14,22 +14,38 @@ "from": [5, 0, 5], "to": [11, 16, 11], "faces": { - "north": { "uv": [5, 0, 11, 16], "texture": "#sides_e", "unlit": true }, - "east": { "uv": [5, 0, 11, 16], "texture": "#sides_e", "unlit": true }, - "south": { "uv": [5, 0, 11, 16], "texture": "#sides_e", "unlit": true }, - "west": { "uv": [5, 0, 11, 16], "texture": "#sides_e", "unlit": true }, + "north": { + "uv": [5, 0, 11, 16], + "texture": "#sides_e", + "forge_data": { "block_light": 15, "sky_light": 15 } + }, + "east": { + "uv": [5, 0, 11, 16], + "texture": "#sides_e", + "forge_data": { "block_light": 15, "sky_light": 15 } + }, + "south": { + "uv": [5, 0, 11, 16], + "texture": "#sides_e", + "forge_data": { "block_light": 15, "sky_light": 15 } + }, + "west": { + "uv": [5, 0, 11, 16], + "texture": "#sides_e", + "forge_data": { "block_light": 15, "sky_light": 15 } + }, "up": { "uv": [5, 5, 11, 11], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "up" }, "down": { "uv": [5, 5, 11, 11], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "down" } } @@ -101,14 +117,14 @@ "uv": [1, 1, 15, 15], "rotation": 180, "texture": "#end_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "up" }, "down": { "uv": [1, 1, 15, 15], "rotation": 180, "texture": "#end_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "down" } } @@ -294,7 +310,7 @@ "east": { "uv": [0, 0, 1, 13], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -305,21 +321,21 @@ "west": { "uv": [0, 0, 1, 13], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 1, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -332,7 +348,7 @@ "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -345,21 +361,21 @@ "uv": [0, 1, 1, 2], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 1, 13], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [15, 3, 16, 16], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -372,7 +388,7 @@ "uv": [0, 0, 1, 13], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -385,19 +401,19 @@ "uv": [0, 0, 1, 13], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 1, 1, 2], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -410,7 +426,7 @@ "uv": [0, 1, 1, 2], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -423,21 +439,21 @@ "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 1, 13], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 0, 1, 13], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -449,7 +465,7 @@ "east": { "uv": [0, 0, 1, 6], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -460,21 +476,21 @@ "west": { "uv": [0, 0, 1, 6], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -486,7 +502,7 @@ "east": { "uv": [0, 0, 1, 3], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -497,21 +513,21 @@ "west": { "uv": [0, 0, 1, 3], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 3, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 0, 3, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -524,7 +540,7 @@ "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -537,21 +553,21 @@ "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 1, 6], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 0, 1, 6], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -564,7 +580,7 @@ "uv": [0, 0, 3, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -577,21 +593,21 @@ "uv": [0, 0, 3, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 1, 3], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 0, 1, 3], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -604,7 +620,7 @@ "uv": [0, 0, 1, 6], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -617,19 +633,19 @@ "uv": [0, 0, 1, 6], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -642,7 +658,7 @@ "uv": [0, 0, 1, 3], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -655,19 +671,19 @@ "uv": [0, 0, 1, 3], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 3, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 0, 3, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -680,7 +696,7 @@ "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -693,21 +709,21 @@ "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 1, 6], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 0, 1, 6], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -720,7 +736,7 @@ "uv": [0, 0, 3, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -733,21 +749,21 @@ "uv": [0, 0, 3, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 1, 3], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 0, 1, 3], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -760,7 +776,7 @@ "uv": [0, 0, 2, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -772,21 +788,21 @@ "uv": [0, 0, 2, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 1, 2], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 0, 1, 2], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -798,7 +814,7 @@ "east": { "uv": [0, 0, 1, 2], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -809,21 +825,21 @@ "west": { "uv": [0, 0, 1, 2], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 2, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 0, 2, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -836,7 +852,7 @@ "uv": [0, 0, 2, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -849,21 +865,21 @@ "uv": [0, 0, 2, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 1, 2], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 0, 1, 2], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -876,7 +892,7 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -889,19 +905,19 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 2, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 0, 2, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -914,7 +930,7 @@ "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -926,21 +942,21 @@ "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 1, 7], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 0, 1, 7], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -952,7 +968,7 @@ "east": { "uv": [0, 0, 1, 7], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -964,21 +980,21 @@ "west": { "uv": [0, 0, 1, 7], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -991,7 +1007,7 @@ "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -1004,21 +1020,21 @@ "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 1, 7], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 0, 1, 7], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -1031,7 +1047,7 @@ "uv": [0, 0, 1, 7], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -1044,19 +1060,19 @@ "uv": [0, 0, 1, 7], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -1069,7 +1085,7 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -1082,19 +1098,19 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -1107,7 +1123,7 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -1120,19 +1136,19 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -1145,7 +1161,7 @@ "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -1158,21 +1174,21 @@ "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 1, 2], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 0, 1, 2], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -1185,7 +1201,7 @@ "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -1198,21 +1214,21 @@ "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 1, 2], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 0, 1, 2], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -1224,7 +1240,7 @@ "east": { "uv": [0, 0, 1, 2], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -1235,21 +1251,21 @@ "west": { "uv": [0, 0, 1, 2], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -1261,7 +1277,7 @@ "east": { "uv": [0, 0, 1, 2], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -1272,21 +1288,21 @@ "west": { "uv": [0, 0, 1, 2], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -1299,7 +1315,7 @@ "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -1312,21 +1328,21 @@ "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 1, 2], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 0, 1, 2], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -1339,7 +1355,7 @@ "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "south": { @@ -1352,21 +1368,21 @@ "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "up": { "uv": [0, 0, 1, 2], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" }, "down": { "uv": [0, 0, 1, 2], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "south" } } @@ -1379,7 +1395,7 @@ "uv": [0, 0, 1, 13], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "east": { @@ -1392,21 +1408,21 @@ "uv": [0, 0, 1, 13], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "up": { "uv": [0, 1, 1, 2], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "down": { "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" } } @@ -1419,7 +1435,7 @@ "uv": [0, 1, 1, 2], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "east": { @@ -1432,20 +1448,20 @@ "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "up": { "uv": [0, 0, 1, 13], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "down": { "uv": [0, 0, 1, 13], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" } } @@ -1457,7 +1473,7 @@ "north": { "uv": [0, 0, 1, 13], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "east": { @@ -1468,21 +1484,21 @@ "south": { "uv": [0, 0, 1, 13], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "up": { "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "down": { "uv": [0, 1, 1, 2], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" } } @@ -1495,7 +1511,7 @@ "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "east": { @@ -1508,20 +1524,20 @@ "uv": [0, 1, 1, 2], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "up": { "uv": [0, 0, 1, 13], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "down": { "uv": [0, 0, 1, 13], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" } } @@ -1534,7 +1550,7 @@ "uv": [0, 0, 1, 9], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "east": { @@ -1547,21 +1563,21 @@ "uv": [0, 0, 1, 9], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "up": { "uv": [0, 0, 3, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "down": { "uv": [0, 0, 3, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" } } @@ -1574,7 +1590,7 @@ "uv": [0, 0, 3, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "east": { @@ -1587,20 +1603,20 @@ "uv": [0, 0, 3, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "up": { "uv": [0, 0, 1, 9], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "down": { "uv": [0, 0, 1, 9], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" } } @@ -1612,7 +1628,7 @@ "north": { "uv": [0, 0, 1, 9], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "east": { @@ -1623,21 +1639,21 @@ "south": { "uv": [0, 0, 1, 9], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "up": { "uv": [0, 0, 3, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "down": { "uv": [0, 0, 3, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" } } @@ -1650,7 +1666,7 @@ "uv": [0, 0, 3, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "east": { @@ -1663,20 +1679,20 @@ "uv": [0, 0, 3, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "up": { "uv": [0, 0, 1, 9], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "down": { "uv": [0, 0, 1, 9], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" } } @@ -1689,7 +1705,7 @@ "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "east": { @@ -1702,20 +1718,20 @@ "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "up": { "uv": [0, 0, 1, 8], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "down": { "uv": [0, 0, 1, 8], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" } } @@ -1728,7 +1744,7 @@ "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "east": { @@ -1741,20 +1757,20 @@ "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "up": { "uv": [0, 0, 1, 7], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "down": { "uv": [0, 0, 1, 7], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" } } @@ -1767,7 +1783,7 @@ "uv": [0, 0, 1, 6], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "east": { @@ -1780,21 +1796,21 @@ "uv": [0, 0, 1, 6], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "up": { "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "down": { "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" } } @@ -1807,7 +1823,7 @@ "uv": [0, 0, 1, 10], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "east": { @@ -1820,21 +1836,21 @@ "uv": [0, 0, 1, 10], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "up": { "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "down": { "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" } } @@ -1847,7 +1863,7 @@ "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "east": { @@ -1860,20 +1876,20 @@ "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "up": { "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "down": { "uv": [0, 0, 1, 2], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" } } @@ -1886,7 +1902,7 @@ "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "east": { @@ -1899,20 +1915,20 @@ "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "up": { "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "down": { "uv": [0, 0, 1, 2], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" } } @@ -1925,7 +1941,7 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "east": { @@ -1938,21 +1954,21 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "up": { "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "down": { "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" } } @@ -1965,7 +1981,7 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "east": { @@ -1978,21 +1994,21 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "up": { "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "down": { "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" } } @@ -2005,7 +2021,7 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "east": { @@ -2018,21 +2034,21 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "up": { "uv": [0, 0, 2, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" }, "down": { "uv": [0, 0, 2, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "east" } } @@ -2049,25 +2065,25 @@ "east": { "uv": [0, 0, 1, 13], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 13], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 1, 1, 2], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -2086,28 +2102,28 @@ "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 1, 1, 2], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 1, 13], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 1, 13], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -2126,28 +2142,28 @@ "uv": [0, 1, 1, 2], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 1, 13], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 1, 13], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -2166,28 +2182,28 @@ "uv": [0, 0, 1, 13], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 13], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 1, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -2206,28 +2222,28 @@ "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 1, 2], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 1, 2], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -2246,28 +2262,28 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -2286,28 +2302,28 @@ "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 1, 2], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 1, 2], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -2326,28 +2342,28 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 2, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 2, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -2366,28 +2382,28 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -2406,26 +2422,26 @@ "uv": [0, 0, 1, 9], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 9], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 3, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 3, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -2444,28 +2460,28 @@ "uv": [0, 0, 3, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 3, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 1, 9], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 1, 9], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -2482,27 +2498,27 @@ "east": { "uv": [0, 0, 1, 9], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 9], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 3, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 3, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -2521,28 +2537,28 @@ "uv": [0, 0, 3, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 3, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 1, 9], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 1, 9], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -2561,26 +2577,26 @@ "uv": [0, 0, 1, 9], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 9], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -2599,26 +2615,26 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -2637,26 +2653,26 @@ "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 3, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 3, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -2675,26 +2691,26 @@ "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 4, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 4, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -2713,26 +2729,26 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -2751,26 +2767,26 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -2788,26 +2804,26 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -2825,26 +2841,26 @@ "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -2863,26 +2879,26 @@ "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -2901,26 +2917,26 @@ "uv": [0, 0, 1, 3], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 3], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -2939,26 +2955,26 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -2977,26 +2993,26 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -3015,26 +3031,26 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -3053,26 +3069,26 @@ "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 4, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 4, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -3091,26 +3107,26 @@ "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 2, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 2, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -3129,26 +3145,26 @@ "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 2, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 2, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -3167,26 +3183,26 @@ "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "west": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "up": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" }, "down": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "north" } } @@ -3198,13 +3214,13 @@ "north": { "uv": [0, 0, 1, 13], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 13], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -3216,14 +3232,14 @@ "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 1, 1, 2], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -3236,14 +3252,14 @@ "uv": [0, 1, 1, 2], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -3255,14 +3271,14 @@ "up": { "uv": [0, 0, 1, 13], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 1, 13], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -3275,14 +3291,14 @@ "uv": [0, 0, 1, 13], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 13], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -3295,14 +3311,14 @@ "uv": [0, 1, 1, 2], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -3315,14 +3331,14 @@ "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 1, 1, 2], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -3335,13 +3351,13 @@ "uv": [0, 0, 1, 13], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 1, 13], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -3354,14 +3370,14 @@ "uv": [0, 0, 4, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 4, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -3373,14 +3389,14 @@ "up": { "uv": [0, 0, 1, 8], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 1, 8], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -3393,14 +3409,14 @@ "uv": [0, 0, 1, 8], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 8], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -3413,14 +3429,14 @@ "uv": [0, 0, 4, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 4, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -3433,14 +3449,14 @@ "uv": [0, 0, 4, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 4, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -3453,13 +3469,13 @@ "uv": [0, 0, 1, 8], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 1, 8], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -3471,13 +3487,13 @@ "north": { "uv": [0, 0, 1, 8], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 8], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -3490,14 +3506,14 @@ "uv": [0, 0, 4, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 4, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -3510,14 +3526,14 @@ "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -3529,14 +3545,14 @@ "up": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -3549,14 +3565,14 @@ "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -3569,14 +3585,14 @@ "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -3589,14 +3605,14 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -3609,14 +3625,14 @@ "uv": [0, 0, 2, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 2, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -3629,14 +3645,14 @@ "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -3648,14 +3664,14 @@ "up": { "uv": [0, 0, 1, 1], "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -3668,14 +3684,14 @@ "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -3688,14 +3704,14 @@ "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -3708,14 +3724,14 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -3728,14 +3744,14 @@ "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -3748,14 +3764,14 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -3768,14 +3784,14 @@ "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -3788,14 +3804,14 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -3808,14 +3824,14 @@ "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -3828,14 +3844,14 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -3848,14 +3864,14 @@ "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -3868,14 +3884,14 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -3888,14 +3904,14 @@ "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -3908,14 +3924,14 @@ "uv": [0, 0, 1, 5], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 5], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -3928,14 +3944,14 @@ "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -3948,14 +3964,14 @@ "uv": [0, 0, 1, 3], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 3], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -3968,14 +3984,14 @@ "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -3988,14 +4004,14 @@ "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -4008,14 +4024,14 @@ "uv": [4, 0, 9, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 5, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -4028,14 +4044,14 @@ "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -4048,14 +4064,14 @@ "uv": [0, 0, 3, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 3, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -4068,14 +4084,14 @@ "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -4088,14 +4104,14 @@ "uv": [0, 0, 3, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 3, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -4108,14 +4124,14 @@ "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -4128,14 +4144,14 @@ "uv": [0, 0, 2, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 2, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -4148,14 +4164,14 @@ "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -4168,14 +4184,14 @@ "uv": [0, 0, 2, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 2, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -4188,14 +4204,14 @@ "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -4208,14 +4224,14 @@ "uv": [0, 0, 2, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 2, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -4228,14 +4244,14 @@ "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -4248,14 +4264,14 @@ "uv": [0, 0, 2, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 2, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -4268,14 +4284,14 @@ "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -4288,14 +4304,14 @@ "uv": [0, 0, 3, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 3, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -4308,14 +4324,14 @@ "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -4328,14 +4344,14 @@ "uv": [0, 0, 5, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 5, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -4348,14 +4364,14 @@ "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -4368,14 +4384,14 @@ "uv": [0, 0, 2, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 2, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -4388,14 +4404,14 @@ "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -4408,14 +4424,14 @@ "uv": [0, 0, 2, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 2, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -4428,14 +4444,14 @@ "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 2], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -4448,14 +4464,14 @@ "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -4468,14 +4484,14 @@ "uv": [0, 0, 1, 3], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 3], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -4488,14 +4504,14 @@ "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -4508,14 +4524,14 @@ "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 1], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -4528,14 +4544,14 @@ "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } @@ -4548,14 +4564,14 @@ "uv": [0, 0, 1, 6], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "south": { "uv": [0, 0, 1, 6], "rotation": 180, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "west": { @@ -4568,14 +4584,14 @@ "uv": [0, 0, 1, 1], "rotation": 270, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" }, "down": { "uv": [0, 0, 1, 1], "rotation": 90, "texture": "#sides_e", - "unlit": true, + "forge_data": { "block_light": 15, "sky_light": 15 }, "cullface": "west" } } diff --git a/src/main/resources/assets/ae2/models/part/conversion_monitor_locked_on.json b/src/main/resources/assets/ae2/models/part/conversion_monitor_locked_on.json index 02a7c518db8..d198222d4fb 100644 --- a/src/main/resources/assets/ae2/models/part/conversion_monitor_locked_on.json +++ b/src/main/resources/assets/ae2/models/part/conversion_monitor_locked_on.json @@ -12,7 +12,7 @@ "north": { "texture": "#lightsBright", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } }, @@ -23,7 +23,7 @@ "north": { "texture": "#lightsMedium", "tintindex": 2, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } }, @@ -34,7 +34,7 @@ "north": { "texture": "#lightsDark", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/conversion_monitor_on.json b/src/main/resources/assets/ae2/models/part/conversion_monitor_on.json index 0d7f3b522b2..f0ff44fd803 100644 --- a/src/main/resources/assets/ae2/models/part/conversion_monitor_on.json +++ b/src/main/resources/assets/ae2/models/part/conversion_monitor_on.json @@ -12,7 +12,7 @@ "north": { "texture": "#lightsBright", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } }, @@ -23,7 +23,7 @@ "north": { "texture": "#lightsMedium", "tintindex": 2, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } }, @@ -34,7 +34,7 @@ "north": { "texture": "#lightsDark", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/crafting_terminal_on.json b/src/main/resources/assets/ae2/models/part/crafting_terminal_on.json index 605d973bf34..9f55cacd570 100644 --- a/src/main/resources/assets/ae2/models/part/crafting_terminal_on.json +++ b/src/main/resources/assets/ae2/models/part/crafting_terminal_on.json @@ -12,7 +12,7 @@ "north": { "texture": "#lightsBright", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } }, @@ -23,7 +23,7 @@ "north": { "texture": "#lightsMedium", "tintindex": 2, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } }, @@ -34,7 +34,7 @@ "north": { "texture": "#lightsDark", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/display_status_has_channel.json b/src/main/resources/assets/ae2/models/part/display_status_has_channel.json index 35c8ef5dce1..6e1cf821b40 100644 --- a/src/main/resources/assets/ae2/models/part/display_status_has_channel.json +++ b/src/main/resources/assets/ae2/models/part/display_status_has_channel.json @@ -10,22 +10,22 @@ "down": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "up": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "east": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "west": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/display_status_on.json b/src/main/resources/assets/ae2/models/part/display_status_on.json index 5484e906f5d..f76981fb471 100644 --- a/src/main/resources/assets/ae2/models/part/display_status_on.json +++ b/src/main/resources/assets/ae2/models/part/display_status_on.json @@ -10,22 +10,22 @@ "down": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "up": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "east": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "west": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/export_bus_has_channel.json b/src/main/resources/assets/ae2/models/part/export_bus_has_channel.json index aa1baee006f..6357f366c14 100644 --- a/src/main/resources/assets/ae2/models/part/export_bus_has_channel.json +++ b/src/main/resources/assets/ae2/models/part/export_bus_has_channel.json @@ -10,22 +10,22 @@ "down": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "up": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "east": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "west": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/export_bus_on.json b/src/main/resources/assets/ae2/models/part/export_bus_on.json index 29efc0b62e4..8a06a7d4431 100644 --- a/src/main/resources/assets/ae2/models/part/export_bus_on.json +++ b/src/main/resources/assets/ae2/models/part/export_bus_on.json @@ -10,22 +10,22 @@ "down": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "up": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "east": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "west": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/import_bus_has_channel.json b/src/main/resources/assets/ae2/models/part/import_bus_has_channel.json index aa1baee006f..6357f366c14 100644 --- a/src/main/resources/assets/ae2/models/part/import_bus_has_channel.json +++ b/src/main/resources/assets/ae2/models/part/import_bus_has_channel.json @@ -10,22 +10,22 @@ "down": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "up": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "east": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "west": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/import_bus_on.json b/src/main/resources/assets/ae2/models/part/import_bus_on.json index 29efc0b62e4..8a06a7d4431 100644 --- a/src/main/resources/assets/ae2/models/part/import_bus_on.json +++ b/src/main/resources/assets/ae2/models/part/import_bus_on.json @@ -10,22 +10,22 @@ "down": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "up": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "east": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "west": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/interface_has_channel.json b/src/main/resources/assets/ae2/models/part/interface_has_channel.json index 93f99fed5dd..235fea68cfe 100644 --- a/src/main/resources/assets/ae2/models/part/interface_has_channel.json +++ b/src/main/resources/assets/ae2/models/part/interface_has_channel.json @@ -10,22 +10,22 @@ "down": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "up": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "east": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "west": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/interface_on.json b/src/main/resources/assets/ae2/models/part/interface_on.json index 48227535b4c..788fb799d1c 100644 --- a/src/main/resources/assets/ae2/models/part/interface_on.json +++ b/src/main/resources/assets/ae2/models/part/interface_on.json @@ -10,22 +10,22 @@ "down": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "up": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "east": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "west": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/level_emitter_base_on.json b/src/main/resources/assets/ae2/models/part/level_emitter_base_on.json index 245e675f0b6..ddd0218fa73 100644 --- a/src/main/resources/assets/ae2/models/part/level_emitter_base_on.json +++ b/src/main/resources/assets/ae2/models/part/level_emitter_base_on.json @@ -39,7 +39,7 @@ "texture": "#emitter", "uv": [6, 7, 8, 9], "rotation": 270, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } }, @@ -52,13 +52,13 @@ "texture": "#emitter", "uv": [5, 6, 9, 10], "rotation": 90, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "down": { "texture": "#emitter", "uv": [5, 6, 9, 10], "rotation": 270, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } }, @@ -70,13 +70,13 @@ "west": { "texture": "#emitter", "uv": [5, 6, 9, 10], - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "east": { "texture": "#emitter", "uv": [5, 6, 9, 10], "rotation": 180, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/level_emitter_status_has_channel.json b/src/main/resources/assets/ae2/models/part/level_emitter_status_has_channel.json index 86d3f5e9dd7..da46967700a 100644 --- a/src/main/resources/assets/ae2/models/part/level_emitter_status_has_channel.json +++ b/src/main/resources/assets/ae2/models/part/level_emitter_status_has_channel.json @@ -10,22 +10,22 @@ "down": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "up": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "east": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "west": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/level_emitter_status_on.json b/src/main/resources/assets/ae2/models/part/level_emitter_status_on.json index 40625b5ffe4..34d87beb2df 100644 --- a/src/main/resources/assets/ae2/models/part/level_emitter_status_on.json +++ b/src/main/resources/assets/ae2/models/part/level_emitter_status_on.json @@ -10,22 +10,22 @@ "down": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "up": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "east": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "west": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/monitor_bright_on.json b/src/main/resources/assets/ae2/models/part/monitor_bright_on.json index 52d8697cde2..dcd093286b1 100644 --- a/src/main/resources/assets/ae2/models/part/monitor_bright_on.json +++ b/src/main/resources/assets/ae2/models/part/monitor_bright_on.json @@ -12,7 +12,7 @@ "north": { "texture": "#lights", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/monitor_dark_on.json b/src/main/resources/assets/ae2/models/part/monitor_dark_on.json index 122d96ddd27..b1342f5cf95 100644 --- a/src/main/resources/assets/ae2/models/part/monitor_dark_on.json +++ b/src/main/resources/assets/ae2/models/part/monitor_dark_on.json @@ -10,7 +10,7 @@ "north": { "texture": "#lights", "tintindex": 2, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/monitor_medium_on.json b/src/main/resources/assets/ae2/models/part/monitor_medium_on.json index 9a3fd9d9e27..443549ab39c 100644 --- a/src/main/resources/assets/ae2/models/part/monitor_medium_on.json +++ b/src/main/resources/assets/ae2/models/part/monitor_medium_on.json @@ -10,7 +10,7 @@ "north": { "texture": "#lights", "tintindex": 4, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/p2p/p2p_tunnel_status_has_channel.json b/src/main/resources/assets/ae2/models/part/p2p/p2p_tunnel_status_has_channel.json index 0f68b41b263..f97a8a55e1c 100644 --- a/src/main/resources/assets/ae2/models/part/p2p/p2p_tunnel_status_has_channel.json +++ b/src/main/resources/assets/ae2/models/part/p2p/p2p_tunnel_status_has_channel.json @@ -10,22 +10,22 @@ "down": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "up": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "east": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "west": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/p2p/p2p_tunnel_status_on.json b/src/main/resources/assets/ae2/models/part/p2p/p2p_tunnel_status_on.json index cbcfc6c23c2..c887978b98f 100644 --- a/src/main/resources/assets/ae2/models/part/p2p/p2p_tunnel_status_on.json +++ b/src/main/resources/assets/ae2/models/part/p2p/p2p_tunnel_status_on.json @@ -10,22 +10,22 @@ "down": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "up": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "east": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "west": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/pattern_access_terminal_on.json b/src/main/resources/assets/ae2/models/part/pattern_access_terminal_on.json index 6774eead5ae..3ae551048de 100644 --- a/src/main/resources/assets/ae2/models/part/pattern_access_terminal_on.json +++ b/src/main/resources/assets/ae2/models/part/pattern_access_terminal_on.json @@ -12,7 +12,7 @@ "north": { "texture": "#lightsBright", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } }, @@ -23,7 +23,7 @@ "north": { "texture": "#lightsMedium", "tintindex": 2, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } }, @@ -34,7 +34,7 @@ "north": { "texture": "#lightsDark", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/pattern_encoding_terminal_on.json b/src/main/resources/assets/ae2/models/part/pattern_encoding_terminal_on.json index 175b7591774..a509443dbc2 100644 --- a/src/main/resources/assets/ae2/models/part/pattern_encoding_terminal_on.json +++ b/src/main/resources/assets/ae2/models/part/pattern_encoding_terminal_on.json @@ -12,7 +12,7 @@ "north": { "texture": "#lightsBright", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } }, @@ -23,7 +23,7 @@ "north": { "texture": "#lightsMedium", "tintindex": 2, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } }, @@ -34,7 +34,7 @@ "north": { "texture": "#lightsDark", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/storage_bus_has_channel.json b/src/main/resources/assets/ae2/models/part/storage_bus_has_channel.json index 93f99fed5dd..235fea68cfe 100644 --- a/src/main/resources/assets/ae2/models/part/storage_bus_has_channel.json +++ b/src/main/resources/assets/ae2/models/part/storage_bus_has_channel.json @@ -10,22 +10,22 @@ "down": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "up": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "east": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "west": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/storage_bus_on.json b/src/main/resources/assets/ae2/models/part/storage_bus_on.json index 48227535b4c..788fb799d1c 100644 --- a/src/main/resources/assets/ae2/models/part/storage_bus_on.json +++ b/src/main/resources/assets/ae2/models/part/storage_bus_on.json @@ -10,22 +10,22 @@ "down": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "up": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "east": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "west": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/storage_monitor_locked_on.json b/src/main/resources/assets/ae2/models/part/storage_monitor_locked_on.json index e35650baa35..e99beb8f92e 100644 --- a/src/main/resources/assets/ae2/models/part/storage_monitor_locked_on.json +++ b/src/main/resources/assets/ae2/models/part/storage_monitor_locked_on.json @@ -12,7 +12,7 @@ "north": { "texture": "#lightsBright", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } }, @@ -23,7 +23,7 @@ "north": { "texture": "#lightsMedium", "tintindex": 2, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } }, @@ -34,7 +34,7 @@ "north": { "texture": "#lightsDark", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/storage_monitor_on.json b/src/main/resources/assets/ae2/models/part/storage_monitor_on.json index 4072ecc0785..3d213f9dff8 100644 --- a/src/main/resources/assets/ae2/models/part/storage_monitor_on.json +++ b/src/main/resources/assets/ae2/models/part/storage_monitor_on.json @@ -12,7 +12,7 @@ "north": { "texture": "#lightsBright", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } }, @@ -23,7 +23,7 @@ "north": { "texture": "#lightsMedium", "tintindex": 2, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } }, @@ -34,7 +34,7 @@ "north": { "texture": "#lightsDark", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/terminal_on.json b/src/main/resources/assets/ae2/models/part/terminal_on.json index c7309083aab..97138c42a70 100644 --- a/src/main/resources/assets/ae2/models/part/terminal_on.json +++ b/src/main/resources/assets/ae2/models/part/terminal_on.json @@ -12,7 +12,7 @@ "north": { "texture": "#lightsBright", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } }, @@ -23,7 +23,7 @@ "north": { "texture": "#lightsMedium", "tintindex": 2, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } }, @@ -34,7 +34,7 @@ "north": { "texture": "#lightsDark", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/toggle_bus_status_has_channel.json b/src/main/resources/assets/ae2/models/part/toggle_bus_status_has_channel.json index 7d386c08be8..368f71a3e9e 100644 --- a/src/main/resources/assets/ae2/models/part/toggle_bus_status_has_channel.json +++ b/src/main/resources/assets/ae2/models/part/toggle_bus_status_has_channel.json @@ -10,22 +10,22 @@ "down": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "up": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "east": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "west": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/toggle_bus_status_on.json b/src/main/resources/assets/ae2/models/part/toggle_bus_status_on.json index 696ebae9620..a2a7aad3926 100644 --- a/src/main/resources/assets/ae2/models/part/toggle_bus_status_on.json +++ b/src/main/resources/assets/ae2/models/part/toggle_bus_status_on.json @@ -10,22 +10,22 @@ "down": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "up": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "east": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "west": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/transition_plane_has_channel.json b/src/main/resources/assets/ae2/models/part/transition_plane_has_channel.json index c896d903a01..e795e8c3ed8 100644 --- a/src/main/resources/assets/ae2/models/part/transition_plane_has_channel.json +++ b/src/main/resources/assets/ae2/models/part/transition_plane_has_channel.json @@ -33,22 +33,22 @@ "down": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "up": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "east": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "west": { "texture": "#indicator", "tintindex": 1, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } } diff --git a/src/main/resources/assets/ae2/models/part/transition_plane_on.json b/src/main/resources/assets/ae2/models/part/transition_plane_on.json index a38493ef927..ba9cb2ed0df 100644 --- a/src/main/resources/assets/ae2/models/part/transition_plane_on.json +++ b/src/main/resources/assets/ae2/models/part/transition_plane_on.json @@ -34,22 +34,22 @@ "down": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "up": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "east": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } }, "west": { "texture": "#indicator", "tintindex": 3, - "unlit": true + "forge_data": { "block_light": 15, "sky_light": 15 } } } }