Crafter Manager, crafting monitor and grid fullbright. #1860
@@ -1,15 +1,18 @@
|
|||||||
package com.raoulvdberge.refinedstorage.block;
|
package com.raoulvdberge.refinedstorage.block;
|
||||||
|
|
||||||
|
import com.raoulvdberge.refinedstorage.RS;
|
||||||
import com.raoulvdberge.refinedstorage.RSGui;
|
import com.raoulvdberge.refinedstorage.RSGui;
|
||||||
import com.raoulvdberge.refinedstorage.api.network.security.Permission;
|
import com.raoulvdberge.refinedstorage.api.network.security.Permission;
|
||||||
import com.raoulvdberge.refinedstorage.block.info.BlockDirection;
|
import com.raoulvdberge.refinedstorage.block.info.BlockDirection;
|
||||||
import com.raoulvdberge.refinedstorage.block.info.BlockInfoBuilder;
|
import com.raoulvdberge.refinedstorage.block.info.BlockInfoBuilder;
|
||||||
import com.raoulvdberge.refinedstorage.render.IModelRegistration;
|
import com.raoulvdberge.refinedstorage.render.IModelRegistration;
|
||||||
|
import com.raoulvdberge.refinedstorage.render.model.baked.BakedModelFullbright;
|
||||||
import com.raoulvdberge.refinedstorage.tile.TileCrafterManager;
|
import com.raoulvdberge.refinedstorage.tile.TileCrafterManager;
|
||||||
import net.minecraft.block.state.IBlockState;
|
import net.minecraft.block.state.IBlockState;
|
||||||
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
|
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
|
||||||
import net.minecraft.entity.player.EntityPlayer;
|
import net.minecraft.entity.player.EntityPlayer;
|
||||||
import net.minecraft.entity.player.EntityPlayerMP;
|
import net.minecraft.entity.player.EntityPlayerMP;
|
||||||
|
import net.minecraft.util.BlockRenderLayer;
|
||||||
import net.minecraft.util.EnumFacing;
|
import net.minecraft.util.EnumFacing;
|
||||||
import net.minecraft.util.EnumHand;
|
import net.minecraft.util.EnumHand;
|
||||||
import net.minecraft.util.math.BlockPos;
|
import net.minecraft.util.math.BlockPos;
|
||||||
@@ -28,6 +31,13 @@ public class BlockCrafterManager extends BlockNode {
|
|||||||
@SideOnly(Side.CLIENT)
|
@SideOnly(Side.CLIENT)
|
||||||
public void registerModels(IModelRegistration modelRegistration) {
|
public void registerModels(IModelRegistration modelRegistration) {
|
||||||
modelRegistration.setModel(this, 0, new ModelResourceLocation(info.getId(), "connected=false,direction=north"));
|
modelRegistration.setModel(this, 0, new ModelResourceLocation(info.getId(), "connected=false,direction=north"));
|
||||||
|
|
||||||
|
modelRegistration.addBakedModelOverride(info.getId(), base -> new BakedModelFullbright(base, RS.ID + ":blocks/crafter_manager/cutouts/front_connected"));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public BlockRenderLayer getBlockLayer() {
|
||||||
|
return BlockRenderLayer.CUTOUT;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@@ -1,14 +1,17 @@
|
|||||||
package com.raoulvdberge.refinedstorage.block;
|
package com.raoulvdberge.refinedstorage.block;
|
||||||
|
|
||||||
|
import com.raoulvdberge.refinedstorage.RS;
|
||||||
import com.raoulvdberge.refinedstorage.RSGui;
|
import com.raoulvdberge.refinedstorage.RSGui;
|
||||||
import com.raoulvdberge.refinedstorage.api.network.security.Permission;
|
import com.raoulvdberge.refinedstorage.api.network.security.Permission;
|
||||||
import com.raoulvdberge.refinedstorage.block.info.BlockDirection;
|
import com.raoulvdberge.refinedstorage.block.info.BlockDirection;
|
||||||
import com.raoulvdberge.refinedstorage.block.info.BlockInfoBuilder;
|
import com.raoulvdberge.refinedstorage.block.info.BlockInfoBuilder;
|
||||||
import com.raoulvdberge.refinedstorage.render.IModelRegistration;
|
import com.raoulvdberge.refinedstorage.render.IModelRegistration;
|
||||||
|
import com.raoulvdberge.refinedstorage.render.model.baked.BakedModelFullbright;
|
||||||
import com.raoulvdberge.refinedstorage.tile.craftingmonitor.TileCraftingMonitor;
|
import com.raoulvdberge.refinedstorage.tile.craftingmonitor.TileCraftingMonitor;
|
||||||
import net.minecraft.block.state.IBlockState;
|
import net.minecraft.block.state.IBlockState;
|
||||||
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
|
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
|
||||||
import net.minecraft.entity.player.EntityPlayer;
|
import net.minecraft.entity.player.EntityPlayer;
|
||||||
|
import net.minecraft.util.BlockRenderLayer;
|
||||||
import net.minecraft.util.EnumFacing;
|
import net.minecraft.util.EnumFacing;
|
||||||
import net.minecraft.util.EnumHand;
|
import net.minecraft.util.EnumHand;
|
||||||
import net.minecraft.util.math.BlockPos;
|
import net.minecraft.util.math.BlockPos;
|
||||||
@@ -27,6 +30,13 @@ public class BlockCraftingMonitor extends BlockNode {
|
|||||||
@SideOnly(Side.CLIENT)
|
@SideOnly(Side.CLIENT)
|
||||||
public void registerModels(IModelRegistration modelRegistration) {
|
public void registerModels(IModelRegistration modelRegistration) {
|
||||||
modelRegistration.setModel(this, 0, new ModelResourceLocation(info.getId(), "inventory"));
|
modelRegistration.setModel(this, 0, new ModelResourceLocation(info.getId(), "inventory"));
|
||||||
|
|
||||||
|
modelRegistration.addBakedModelOverride(info.getId(), base -> new BakedModelFullbright(base, RS.ID + ":blocks/crafting_monitor/cutouts/front_connected"));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public BlockRenderLayer getBlockLayer() {
|
||||||
|
return BlockRenderLayer.CUTOUT;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@@ -1,11 +1,13 @@
|
|||||||
package com.raoulvdberge.refinedstorage.block;
|
package com.raoulvdberge.refinedstorage.block;
|
||||||
|
|
||||||
|
import com.raoulvdberge.refinedstorage.RS;
|
||||||
import com.raoulvdberge.refinedstorage.RSGui;
|
import com.raoulvdberge.refinedstorage.RSGui;
|
||||||
import com.raoulvdberge.refinedstorage.api.network.grid.GridType;
|
import com.raoulvdberge.refinedstorage.api.network.grid.GridType;
|
||||||
import com.raoulvdberge.refinedstorage.block.info.BlockDirection;
|
import com.raoulvdberge.refinedstorage.block.info.BlockDirection;
|
||||||
import com.raoulvdberge.refinedstorage.block.info.BlockInfoBuilder;
|
import com.raoulvdberge.refinedstorage.block.info.BlockInfoBuilder;
|
||||||
import com.raoulvdberge.refinedstorage.item.itemblock.ItemBlockBase;
|
import com.raoulvdberge.refinedstorage.item.itemblock.ItemBlockBase;
|
||||||
import com.raoulvdberge.refinedstorage.render.IModelRegistration;
|
import com.raoulvdberge.refinedstorage.render.IModelRegistration;
|
||||||
|
import com.raoulvdberge.refinedstorage.render.model.baked.BakedModelFullbright;
|
||||||
import com.raoulvdberge.refinedstorage.tile.grid.TileGrid;
|
import com.raoulvdberge.refinedstorage.tile.grid.TileGrid;
|
||||||
import net.minecraft.block.properties.PropertyEnum;
|
import net.minecraft.block.properties.PropertyEnum;
|
||||||
import net.minecraft.block.state.BlockStateContainer;
|
import net.minecraft.block.state.BlockStateContainer;
|
||||||
@@ -15,6 +17,7 @@ import net.minecraft.creativetab.CreativeTabs;
|
|||||||
import net.minecraft.entity.player.EntityPlayer;
|
import net.minecraft.entity.player.EntityPlayer;
|
||||||
import net.minecraft.item.Item;
|
import net.minecraft.item.Item;
|
||||||
import net.minecraft.item.ItemStack;
|
import net.minecraft.item.ItemStack;
|
||||||
|
import net.minecraft.util.BlockRenderLayer;
|
||||||
import net.minecraft.util.EnumFacing;
|
import net.minecraft.util.EnumFacing;
|
||||||
import net.minecraft.util.EnumHand;
|
import net.minecraft.util.EnumHand;
|
||||||
import net.minecraft.util.NonNullList;
|
import net.minecraft.util.NonNullList;
|
||||||
@@ -39,6 +42,19 @@ public class BlockGrid extends BlockNode {
|
|||||||
modelRegistration.setModel(this, GridType.CRAFTING.getId(), new ModelResourceLocation(info.getId(), "connected=false,direction=north,type=crafting"));
|
modelRegistration.setModel(this, GridType.CRAFTING.getId(), new ModelResourceLocation(info.getId(), "connected=false,direction=north,type=crafting"));
|
||||||
modelRegistration.setModel(this, GridType.PATTERN.getId(), new ModelResourceLocation(info.getId(), "connected=false,direction=north,type=pattern"));
|
modelRegistration.setModel(this, GridType.PATTERN.getId(), new ModelResourceLocation(info.getId(), "connected=false,direction=north,type=pattern"));
|
||||||
modelRegistration.setModel(this, GridType.FLUID.getId(), new ModelResourceLocation(info.getId(), "connected=false,direction=north,type=fluid"));
|
modelRegistration.setModel(this, GridType.FLUID.getId(), new ModelResourceLocation(info.getId(), "connected=false,direction=north,type=fluid"));
|
||||||
|
|
||||||
|
modelRegistration.addBakedModelOverride(info.getId(), base -> new BakedModelFullbright(
|
||||||
|
base,
|
||||||
|
RS.ID + ":blocks/grid/cutouts/front_connected",
|
||||||
|
RS.ID + ":blocks/grid/cutouts/crafting_front_connected",
|
||||||
|
RS.ID + ":blocks/grid/cutouts/pattern_front_connected",
|
||||||
|
RS.ID + ":blocks/grid/cutouts/fluid_front_connected"
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public BlockRenderLayer getBlockLayer() {
|
||||||
|
return BlockRenderLayer.CUTOUT;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@@ -1,14 +1,15 @@
|
|||||||
{
|
{
|
||||||
"forge_marker": 1,
|
"forge_marker": 1,
|
||||||
"defaults": {
|
"defaults": {
|
||||||
"model": "cube",
|
"model": "refinedstorage:cube_cutout_north",
|
||||||
"textures": {
|
"textures": {
|
||||||
"particle": "refinedstorage:blocks/side",
|
"particle": "refinedstorage:blocks/side",
|
||||||
"north": "refinedstorage:blocks/crafter_manager_front",
|
"north": "refinedstorage:blocks/crafter_manager/front",
|
||||||
"east": "refinedstorage:blocks/grid_left",
|
"east": "refinedstorage:blocks/crafter_manager/left",
|
||||||
"south": "refinedstorage:blocks/grid_back",
|
"south": "refinedstorage:blocks/crafter_manager/back",
|
||||||
"west": "refinedstorage:blocks/grid_right",
|
"west": "refinedstorage:blocks/crafter_manager/right",
|
||||||
"up": "refinedstorage:blocks/grid_top",
|
"up": "refinedstorage:blocks/crafter_manager/top",
|
||||||
|
"cutout": "refinedstorage:blocks/crafter_manager/cutouts/front_disconnected",
|
||||||
"down": "refinedstorage:blocks/bottom"
|
"down": "refinedstorage:blocks/bottom"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -16,7 +17,7 @@
|
|||||||
"connected": {
|
"connected": {
|
||||||
"true": {
|
"true": {
|
||||||
"textures": {
|
"textures": {
|
||||||
"north": "refinedstorage:blocks/crafter_manager_front_connected"
|
"cutout": "refinedstorage:blocks/crafter_manager/cutouts/front_connected"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"false": {
|
"false": {
|
||||||
|
@@ -1,15 +1,16 @@
|
|||||||
{
|
{
|
||||||
"forge_marker": 1,
|
"forge_marker": 1,
|
||||||
"defaults": {
|
"defaults": {
|
||||||
"model": "cube",
|
"model": "refinedstorage:cube_cutout_north",
|
||||||
"textures": {
|
"textures": {
|
||||||
"particle": "refinedstorage:blocks/crafting_monitor_front",
|
"particle": "refinedstorage:blocks/crafting_monitor/front",
|
||||||
"north": "refinedstorage:blocks/crafting_monitor_front",
|
"north": "refinedstorage:blocks/crafting_monitor/front",
|
||||||
"east": "refinedstorage:blocks/crafting_monitor_left",
|
"east": "refinedstorage:blocks/crafting_monitor/left",
|
||||||
"south": "refinedstorage:blocks/crafting_monitor_back",
|
"south": "refinedstorage:blocks/crafting_monitor/back",
|
||||||
"west": "refinedstorage:blocks/crafting_monitor_right",
|
"west": "refinedstorage:blocks/crafting_monitor/right",
|
||||||
"up": "refinedstorage:blocks/crafting_monitor_top",
|
"up": "refinedstorage:blocks/crafting_monitor/top",
|
||||||
"down": "refinedstorage:blocks/bottom"
|
"down": "refinedstorage:blocks/bottom",
|
||||||
|
"cutout": "refinedstorage:blocks/crafting_monitor/cutouts/front_disconnected"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"variants": {
|
"variants": {
|
||||||
@@ -22,7 +23,7 @@
|
|||||||
"connected": {
|
"connected": {
|
||||||
"true": {
|
"true": {
|
||||||
"textures": {
|
"textures": {
|
||||||
"north": "refinedstorage:blocks/crafting_monitor_front_connected"
|
"cutout": "refinedstorage:blocks/crafting_monitor/cutouts/front_connected"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"false": {
|
"false": {
|
||||||
|
@@ -1,60 +1,64 @@
|
|||||||
{
|
{
|
||||||
"forge_marker": 1,
|
"forge_marker": 1,
|
||||||
"defaults": {
|
"defaults": {
|
||||||
"model": "cube",
|
"model": "refinedstorage:cube_cutout_north",
|
||||||
"textures": {
|
"textures": {
|
||||||
"particle": "refinedstorage:blocks/side",
|
"particle": "refinedstorage:blocks/side",
|
||||||
"north": "refinedstorage:blocks/grid_disconnected",
|
"east": "refinedstorage:blocks/grid/left",
|
||||||
"east": "refinedstorage:blocks/grid_left",
|
"south": "refinedstorage:blocks/grid/back",
|
||||||
"south": "refinedstorage:blocks/grid_back",
|
"west": "refinedstorage:blocks/grid/right",
|
||||||
"west": "refinedstorage:blocks/grid_right",
|
"up": "refinedstorage:blocks/grid/top",
|
||||||
"up": "refinedstorage:blocks/grid_top",
|
"down": "refinedstorage:blocks/bottom",
|
||||||
"down": "refinedstorage:blocks/bottom"
|
"north_normal": "refinedstorage:blocks/grid/front",
|
||||||
|
"north_crafting": "refinedstorage:blocks/grid/crafting_front",
|
||||||
|
"north_pattern": "refinedstorage:blocks/grid/pattern_front",
|
||||||
|
"north_fluid": "refinedstorage:blocks/grid/fluid_front",
|
||||||
|
"cutout_normal": "refinedstorage:blocks/grid/cutouts/front_disconnected",
|
||||||
|
"cutout_crafting": "refinedstorage:blocks/grid/cutouts/crafting_front_disconnected",
|
||||||
|
"cutout_pattern": "refinedstorage:blocks/grid/cutouts/pattern_front_disconnected",
|
||||||
|
"cutout_fluid": "refinedstorage:blocks/grid/cutouts/fluid_front_disconnected"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"variants": {
|
"variants": {
|
||||||
"connected": {
|
"connected": {
|
||||||
"true": {
|
"true": {
|
||||||
"textures": {
|
"textures": {
|
||||||
"north_normal": "refinedstorage:blocks/grid_front_connected",
|
"cutout_normal": "refinedstorage:blocks/grid/cutouts/front_connected",
|
||||||
"north_crafting": "refinedstorage:blocks/grid_crafting_front_connected",
|
"cutout_crafting": "refinedstorage:blocks/grid/cutouts/crafting_front_connected",
|
||||||
"north_pattern": "refinedstorage:blocks/grid_pattern_front_connected",
|
"cutout_pattern": "refinedstorage:blocks/grid/cutouts/pattern_front_connected",
|
||||||
"north_fluid": "refinedstorage:blocks/grid_fluid_front_connected"
|
"cutout_fluid": "refinedstorage:blocks/grid/cutouts/fluid_front_connected"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"false": {
|
"false": {
|
||||||
"textures": {
|
|
||||||
"north_normal": "refinedstorage:blocks/grid_front",
|
|
||||||
"north_crafting": "refinedstorage:blocks/grid_crafting_front",
|
|
||||||
"north_pattern": "refinedstorage:blocks/grid_pattern_front",
|
|
||||||
"north_fluid": "refinedstorage:blocks/grid_fluid_front"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"type": {
|
"type": {
|
||||||
"normal": {
|
"normal": {
|
||||||
"textures": {
|
"textures": {
|
||||||
"north": "#north_normal"
|
"north": "#north_normal",
|
||||||
|
"cutout": "#cutout_normal"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"crafting": {
|
"crafting": {
|
||||||
"textures": {
|
"textures": {
|
||||||
"north": "#north_crafting"
|
"north": "#north_crafting",
|
||||||
|
"cutout": "#cutout_crafting"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pattern": {
|
"pattern": {
|
||||||
"textures": {
|
"textures": {
|
||||||
"north": "#north_pattern"
|
"north": "#north_pattern",
|
||||||
|
"cutout": "#cutout_pattern"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"fluid": {
|
"fluid": {
|
||||||
"textures": {
|
"textures": {
|
||||||
"north": "#north_fluid",
|
"north": "#north_fluid",
|
||||||
"east": "refinedstorage:blocks/grid_fluid_left",
|
"cutout": "#cutout_fluid",
|
||||||
"south": "refinedstorage:blocks/grid_fluid_back",
|
"east": "refinedstorage:blocks/grid/fluid_left",
|
||||||
"west": "refinedstorage:blocks/grid_fluid_right",
|
"south": "refinedstorage:blocks/grid/fluid_back",
|
||||||
"up": "refinedstorage:blocks/grid_fluid_top",
|
"west": "refinedstorage:blocks/grid/fluid_right",
|
||||||
"down": "refinedstorage:blocks/bottom"
|
"up": "refinedstorage:blocks/grid/fluid_top"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@@ -0,0 +1,61 @@
|
|||||||
|
{
|
||||||
|
"parent": "block/cube",
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"from": [
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"to": [
|
||||||
|
16,
|
||||||
|
16,
|
||||||
|
16
|
||||||
|
],
|
||||||
|
"faces": {
|
||||||
|
"down": {
|
||||||
|
"texture": "#down",
|
||||||
|
"cullface": "down"
|
||||||
|
},
|
||||||
|
"up": {
|
||||||
|
"texture": "#up",
|
||||||
|
"cullface": "up"
|
||||||
|
},
|
||||||
|
"north": {
|
||||||
|
"texture": "#north",
|
||||||
|
"cullface": "north"
|
||||||
|
},
|
||||||
|
"south": {
|
||||||
|
"texture": "#south",
|
||||||
|
"cullface": "south"
|
||||||
|
},
|
||||||
|
"west": {
|
||||||
|
"texture": "#west",
|
||||||
|
"cullface": "west"
|
||||||
|
},
|
||||||
|
"east": {
|
||||||
|
"texture": "#east",
|
||||||
|
"cullface": "east"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"from": [
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"to": [
|
||||||
|
16,
|
||||||
|
16,
|
||||||
|
16
|
||||||
|
],
|
||||||
|
"faces": {
|
||||||
|
"north": {
|
||||||
|
"texture": "#cutout",
|
||||||
|
"cullface": "north"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 533 B After Width: | Height: | Size: 533 B |
After Width: | Height: | Size: 313 B |
After Width: | Height: | Size: 541 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 596 B |
Before Width: | Height: | Size: 794 B |
@@ -1,9 +0,0 @@
|
|||||||
{
|
|
||||||
"ctm": {
|
|
||||||
"ctm_version": 1,
|
|
||||||
"layer": "CUTOUT",
|
|
||||||
"extra": {
|
|
||||||
"light": 15
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 553 B After Width: | Height: | Size: 553 B |
After Width: | Height: | Size: 324 B |
After Width: | Height: | Size: 554 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 16 KiB |
@@ -1,9 +0,0 @@
|
|||||||
{
|
|
||||||
"ctm": {
|
|
||||||
"ctm_version": 1,
|
|
||||||
"layer": "CUTOUT",
|
|
||||||
"extra": {
|
|
||||||
"light": 15
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 554 B |
Before Width: | Height: | Size: 555 B After Width: | Height: | Size: 555 B |
After Width: | Height: | Size: 338 B |
Before Width: | Height: | Size: 513 B After Width: | Height: | Size: 513 B |
After Width: | Height: | Size: 312 B |
Before Width: | Height: | Size: 553 B After Width: | Height: | Size: 553 B |
After Width: | Height: | Size: 323 B |
Before Width: | Height: | Size: 551 B After Width: | Height: | Size: 551 B |
After Width: | Height: | Size: 330 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 555 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 554 B |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 554 B |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 16 KiB |
@@ -1,9 +0,0 @@
|
|||||||
{
|
|
||||||
"ctm": {
|
|
||||||
"ctm_version": 1,
|
|
||||||
"layer": "CUTOUT",
|
|
||||||
"extra": {
|
|
||||||
"light": 15
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 16 KiB |
@@ -1,9 +0,0 @@
|
|||||||
{
|
|
||||||
"ctm": {
|
|
||||||
"ctm_version": 1,
|
|
||||||
"layer": "CUTOUT",
|
|
||||||
"extra": {
|
|
||||||
"light": 15
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 15 KiB |
@@ -1,9 +0,0 @@
|
|||||||
{
|
|
||||||
"ctm": {
|
|
||||||
"ctm_version": 1,
|
|
||||||
"layer": "CUTOUT",
|
|
||||||
"extra": {
|
|
||||||
"light": 15
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 15 KiB |
@@ -1,9 +0,0 @@
|
|||||||
{
|
|
||||||
"ctm": {
|
|
||||||
"ctm_version": 1,
|
|
||||||
"layer": "CUTOUT",
|
|
||||||
"extra": {
|
|
||||||
"light": 15
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|