New art by CyanideX
@@ -356,6 +356,7 @@ public class BlockCable extends BlockCoverable {
|
||||
|
||||
@Override
|
||||
public BlockRenderLayer getBlockLayer() {
|
||||
return RefinedStorage.INSTANCE.config.translucentCables ? BlockRenderLayer.TRANSLUCENT : super.getBlockLayer();
|
||||
// @TODO: Remove config
|
||||
return BlockRenderLayer.CUTOUT;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
package refinedstorage.block;
|
||||
|
||||
import mcmultipart.block.BlockCoverable;
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.block.state.IBlockState;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
@@ -14,7 +15,6 @@ import net.minecraft.world.IBlockAccess;
|
||||
import net.minecraft.world.World;
|
||||
import refinedstorage.RefinedStorage;
|
||||
import refinedstorage.RefinedStorageGui;
|
||||
import refinedstorage.tile.TileCable;
|
||||
import refinedstorage.tile.TileWirelessTransmitter;
|
||||
|
||||
public class BlockWirelessTransmitter extends BlockNode {
|
||||
@@ -69,7 +69,7 @@ public class BlockWirelessTransmitter extends BlockNode {
|
||||
|
||||
@Override
|
||||
public boolean canPlaceBlockAt(World world, BlockPos pos) {
|
||||
return world.getTileEntity(pos.offset(EnumFacing.DOWN)) instanceof TileCable;
|
||||
return world.getBlockState(pos.offset(EnumFacing.DOWN)).getBlock() instanceof BlockCoverable;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -270,7 +270,7 @@ public class ClientProxy extends CommonProxy {
|
||||
ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(RefinedStorageBlocks.FLUID_INTERFACE), 0, new ModelResourceLocation("refinedstorage:fluid_interface", "inventory"));
|
||||
ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(RefinedStorageBlocks.WIRELESS_TRANSMITTER), 0, new ModelResourceLocation("refinedstorage:wireless_transmitter", "inventory"));
|
||||
ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(RefinedStorageBlocks.CRAFTING_MONITOR), 0, new ModelResourceLocation("refinedstorage:crafting_monitor", "inventory"));
|
||||
ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(RefinedStorageBlocks.CRAFTER), 0, new ModelResourceLocation("refinedstorage:crafter", "inventory"));
|
||||
ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(RefinedStorageBlocks.CRAFTER), 0, new ModelResourceLocation("refinedstorage:crafter", "connected=false,direction=north"));
|
||||
ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(RefinedStorageBlocks.PROCESSING_PATTERN_ENCODER), 0, new ModelResourceLocation("refinedstorage:processing_pattern_encoder", "inventory"));
|
||||
ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(RefinedStorageBlocks.NETWORK_TRANSMITTER), 0, new ModelResourceLocation("refinedstorage:network_transmitter", "inventory"));
|
||||
ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(RefinedStorageBlocks.NETWORK_RECEIVER), 0, new ModelResourceLocation("refinedstorage:network_receiver", "inventory"));
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"textures": {
|
||||
"all": "refinedstorage:blocks/cable",
|
||||
"particle": "refinedstorage:blocks/cable"
|
||||
"all": "refinedstorage:blocks/cable_new",
|
||||
"particle": "refinedstorage:blocks/cable_new"
|
||||
},
|
||||
"model": "refinedstorage:cable_core",
|
||||
"uvlock": true
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
"textures": {
|
||||
"all": "refinedstorage:blocks/cable",
|
||||
"particle": "refinedstorage:blocks/cable",
|
||||
"front": "refinedstorage:blocks/constructor",
|
||||
"line": "refinedstorage:blocks/cable_part"
|
||||
"front": "refinedstorage:blocks/constructor_on",
|
||||
"line": "refinedstorage:blocks/importer_exporter_external_storage"
|
||||
},
|
||||
"model": "refinedstorage:cable_core",
|
||||
"uvlock": true
|
||||
@@ -17,12 +17,6 @@
|
||||
"transform": "forge:default-block"
|
||||
}
|
||||
],
|
||||
"connected": {
|
||||
"true": {
|
||||
},
|
||||
"false": {
|
||||
}
|
||||
},
|
||||
"direction": {
|
||||
"north": {
|
||||
"submodel": "refinedstorage:constructor_destructor_north"
|
||||
|
||||
@@ -3,8 +3,9 @@
|
||||
"defaults": {
|
||||
"model": "orientable",
|
||||
"textures": {
|
||||
"side": "refinedstorage:blocks/side",
|
||||
"top": "refinedstorage:blocks/side",
|
||||
"particle": "refinedstorage:blocks/controller_0",
|
||||
"side": "refinedstorage:blocks/controller_0",
|
||||
"top": "refinedstorage:blocks/controller_0",
|
||||
"front": "refinedstorage:blocks/controller_0"
|
||||
}
|
||||
},
|
||||
@@ -17,37 +18,51 @@
|
||||
},
|
||||
"1": {
|
||||
"textures": {
|
||||
"side": "refinedstorage:blocks/controller_1",
|
||||
"top": "refinedstorage:blocks/controller_1",
|
||||
"front": "refinedstorage:blocks/controller_1"
|
||||
}
|
||||
},
|
||||
"2": {
|
||||
"textures": {
|
||||
"side": "refinedstorage:blocks/controller_2",
|
||||
"top": "refinedstorage:blocks/controller_2",
|
||||
"front": "refinedstorage:blocks/controller_2"
|
||||
}
|
||||
},
|
||||
"3": {
|
||||
"textures": {
|
||||
"front": "refinedstorage:blocks/controller_3"
|
||||
"side": "refinedstorage:blocks/controller_on",
|
||||
"top": "refinedstorage:blocks/controller_on",
|
||||
"front": "refinedstorage:blocks/controller_on"
|
||||
}
|
||||
},
|
||||
"4": {
|
||||
"textures": {
|
||||
"front": "refinedstorage:blocks/controller_4"
|
||||
"side": "refinedstorage:blocks/controller_on",
|
||||
"top": "refinedstorage:blocks/controller_on",
|
||||
"front": "refinedstorage:blocks/controller_on"
|
||||
}
|
||||
},
|
||||
"5": {
|
||||
"textures": {
|
||||
"front": "refinedstorage:blocks/controller_5"
|
||||
"side": "refinedstorage:blocks/controller_on",
|
||||
"top": "refinedstorage:blocks/controller_on",
|
||||
"front": "refinedstorage:blocks/controller_on"
|
||||
}
|
||||
},
|
||||
"6": {
|
||||
"textures": {
|
||||
"front": "refinedstorage:blocks/controller_6"
|
||||
"side": "refinedstorage:blocks/controller_on",
|
||||
"top": "refinedstorage:blocks/controller_on",
|
||||
"front": "refinedstorage:blocks/controller_on"
|
||||
}
|
||||
},
|
||||
"7": {
|
||||
"textures": {
|
||||
"front": "refinedstorage:blocks/controller_7"
|
||||
"side": "refinedstorage:blocks/controller_on",
|
||||
"top": "refinedstorage:blocks/controller_on",
|
||||
"front": "refinedstorage:blocks/controller_on"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -1,51 +1,93 @@
|
||||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "orientable",
|
||||
"model": "cube",
|
||||
"textures": {
|
||||
"side": "refinedstorage:blocks/side",
|
||||
"top": "refinedstorage:blocks/side"
|
||||
}
|
||||
"particle": "refinedstorage:blocks/crafter_side",
|
||||
"crafter_side": "refinedstorage:blocks/crafter_side",
|
||||
"crafter_side_90": "refinedstorage:blocks/crafter_side_90",
|
||||
"crafter_side_180": "refinedstorage:blocks/crafter_side_180",
|
||||
"crafter_side_270": "refinedstorage:blocks/crafter_side_270",
|
||||
"crafter_front": "refinedstorage:blocks/crafter_front"
|
||||
},
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"inventory": [
|
||||
{
|
||||
"textures": {
|
||||
"front": "refinedstorage:blocks/crafter_disconnected"
|
||||
},
|
||||
"y": 0
|
||||
}
|
||||
],
|
||||
"connected": {
|
||||
"true": {
|
||||
"textures": {
|
||||
"front": "refinedstorage:blocks/crafter_connected"
|
||||
"crafter_side": "refinedstorage:blocks/crafter_side_connected",
|
||||
"crafter_side_90": "refinedstorage:blocks/crafter_side_connected_90",
|
||||
"crafter_side_180": "refinedstorage:blocks/crafter_side_connected_180",
|
||||
"crafter_side_270": "refinedstorage:blocks/crafter_side_connected_270",
|
||||
"crafter_front": "refinedstorage:blocks/crafter_front_connected"
|
||||
}
|
||||
},
|
||||
"false": {
|
||||
"textures": {
|
||||
"front": "refinedstorage:blocks/crafter_disconnected"
|
||||
}
|
||||
}
|
||||
},
|
||||
"direction": {
|
||||
"north": {
|
||||
"y": 0
|
||||
"textures": {
|
||||
"down": "#crafter_side",
|
||||
"up": "#crafter_side",
|
||||
"north": "#crafter_front",
|
||||
"east": "#crafter_side_90",
|
||||
"south": "refinedstorage:blocks/crafter_bottom",
|
||||
"west": "#crafter_side_270"
|
||||
}
|
||||
},
|
||||
"east": {
|
||||
"y": 90
|
||||
"textures": {
|
||||
"down": "refinedstorage:blocks/crafter_bottom",
|
||||
"up": "#crafter_side_90",
|
||||
"north": "#crafter_side_270",
|
||||
"east": "#crafter_front",
|
||||
"south": "#crafter_side_90",
|
||||
"west": "refinedstorage:blocks/crafter_bottom"
|
||||
}
|
||||
},
|
||||
"south": {
|
||||
"y": 180
|
||||
"textures": {
|
||||
"down": "refinedstorage:blocks/crafter_bottom",
|
||||
"up": "#crafter_side_180",
|
||||
"north": "refinedstorage:blocks/crafter_bottom",
|
||||
"east": "#crafter_side_270",
|
||||
"south": "#crafter_front",
|
||||
"west": "#crafter_side_90"
|
||||
}
|
||||
},
|
||||
"west": {
|
||||
"y": 270
|
||||
"textures": {
|
||||
"down": "refinedstorage:blocks/crafter_bottom",
|
||||
"up": "#crafter_side_270",
|
||||
"north": "#crafter_side_90",
|
||||
"east": "refinedstorage:blocks/crafter_bottom",
|
||||
"south": "#crafter_side_270",
|
||||
"west": "#crafter_front"
|
||||
}
|
||||
},
|
||||
"up": {
|
||||
"x": 270
|
||||
"textures": {
|
||||
"down": "refinedstorage:blocks/crafter_bottom",
|
||||
"up": "#crafter_front",
|
||||
"north": "#crafter_side",
|
||||
"east": "#crafter_side",
|
||||
"south": "#crafter_side",
|
||||
"west": "#crafter_side"
|
||||
}
|
||||
},
|
||||
"down": {
|
||||
"x": 90
|
||||
"textures": {
|
||||
"down": "#crafter_front",
|
||||
"up": "refinedstorage:blocks/crafter_bottom",
|
||||
"north": "#crafter_side_180",
|
||||
"east": "#crafter_side_180",
|
||||
"south": "#crafter_side_180",
|
||||
"west": "#crafter_side_180"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,23 +1,28 @@
|
||||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "orientable",
|
||||
"model": "cube",
|
||||
"textures": {
|
||||
"side": "refinedstorage:blocks/side",
|
||||
"top": "refinedstorage:blocks/side",
|
||||
"front": "refinedstorage:blocks/crafting_monitor_disconnected"
|
||||
"particle": "refinedstorage:blocks/crafting_monitor_front",
|
||||
"north": "refinedstorage:blocks/crafting_monitor_front",
|
||||
"east": "refinedstorage:blocks/crafting_monitor_left",
|
||||
"south": "refinedstorage:blocks/crafting_monitor_back",
|
||||
"west": "refinedstorage:blocks/crafting_monitor_right",
|
||||
"up": "refinedstorage:blocks/crafting_monitor_top",
|
||||
"down": "refinedstorage:blocks/bottom"
|
||||
}
|
||||
},
|
||||
"variants": {
|
||||
"inventory": [
|
||||
{
|
||||
"transform": "forge:default-block",
|
||||
"y": 0
|
||||
}
|
||||
],
|
||||
"connected": {
|
||||
"true": {
|
||||
"textures": {
|
||||
"front": "refinedstorage:blocks/crafting_monitor_connected"
|
||||
"north": "refinedstorage:blocks/crafting_monitor_connected_front"
|
||||
}
|
||||
},
|
||||
"false": {
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
"textures": {
|
||||
"all": "refinedstorage:blocks/cable",
|
||||
"particle": "refinedstorage:blocks/cable",
|
||||
"front": "refinedstorage:blocks/destructor",
|
||||
"line": "refinedstorage:blocks/cable_part"
|
||||
"front": "refinedstorage:blocks/destructor_on",
|
||||
"line": "refinedstorage:blocks/importer_exporter_external_storage"
|
||||
},
|
||||
"model": "refinedstorage:cable_core",
|
||||
"uvlock": true
|
||||
@@ -17,12 +17,6 @@
|
||||
"transform": "forge:default-block"
|
||||
}
|
||||
],
|
||||
"connected": {
|
||||
"true": {
|
||||
},
|
||||
"false": {
|
||||
}
|
||||
},
|
||||
"direction": {
|
||||
"north": {
|
||||
"submodel": "refinedstorage:constructor_destructor_north"
|
||||
|
||||
@@ -1,11 +1,15 @@
|
||||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "orientable",
|
||||
"model": "cube",
|
||||
"textures": {
|
||||
"side": "refinedstorage:blocks/side",
|
||||
"top": "refinedstorage:blocks/side",
|
||||
"front": "refinedstorage:blocks/disk_drive_0"
|
||||
"particle": "refinedstorage:blocks/disk_drive_0",
|
||||
"down": "refinedstorage:blocks/disk_drive_bottom",
|
||||
"up": "refinedstorage:blocks/disk_drive_top",
|
||||
"north": "refinedstorage:blocks/disk_drive_0",
|
||||
"east": "refinedstorage:blocks/disk_drive_side",
|
||||
"south": "refinedstorage:blocks/disk_drive_side",
|
||||
"west": "refinedstorage:blocks/disk_drive_side"
|
||||
}
|
||||
},
|
||||
"variants": {
|
||||
@@ -65,42 +69,42 @@
|
||||
"stored": {
|
||||
"0": {
|
||||
"textures": {
|
||||
"front": "refinedstorage:blocks/disk_drive_0"
|
||||
"north": "refinedstorage:blocks/disk_drive_0"
|
||||
}
|
||||
},
|
||||
"1": {
|
||||
"textures": {
|
||||
"front": "refinedstorage:blocks/disk_drive_1"
|
||||
"north": "refinedstorage:blocks/disk_drive_0"
|
||||
}
|
||||
},
|
||||
"2": {
|
||||
"textures": {
|
||||
"front": "refinedstorage:blocks/disk_drive_2"
|
||||
"north": "refinedstorage:blocks/disk_drive_0"
|
||||
}
|
||||
},
|
||||
"3": {
|
||||
"textures": {
|
||||
"front": "refinedstorage:blocks/disk_drive_3"
|
||||
"north": "refinedstorage:blocks/disk_drive_0"
|
||||
}
|
||||
},
|
||||
"4": {
|
||||
"textures": {
|
||||
"front": "refinedstorage:blocks/disk_drive_4"
|
||||
"north": "refinedstorage:blocks/disk_drive_0"
|
||||
}
|
||||
},
|
||||
"5": {
|
||||
"textures": {
|
||||
"front": "refinedstorage:blocks/disk_drive_5"
|
||||
"north": "refinedstorage:blocks/disk_drive_0"
|
||||
}
|
||||
},
|
||||
"6": {
|
||||
"textures": {
|
||||
"front": "refinedstorage:blocks/disk_drive_6"
|
||||
"north": "refinedstorage:blocks/disk_drive_0"
|
||||
}
|
||||
},
|
||||
"7": {
|
||||
"textures": {
|
||||
"front": "refinedstorage:blocks/disk_drive_7"
|
||||
"north": "refinedstorage:blocks/disk_drive_0"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"textures": {
|
||||
"side": "refinedstorage:blocks/side",
|
||||
"top": "refinedstorage:blocks/side",
|
||||
"front": "refinedstorage:blocks/disk_manipulator"
|
||||
"front": "refinedstorage:blocks/disk_manipulator_disconnected"
|
||||
}
|
||||
},
|
||||
"variants": {
|
||||
@@ -16,6 +16,9 @@
|
||||
],
|
||||
"connected": {
|
||||
"true": {
|
||||
"textures": {
|
||||
"front": "refinedstorage:blocks/disk_manipulator"
|
||||
}
|
||||
},
|
||||
"false": {
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
"textures": {
|
||||
"all": "refinedstorage:blocks/cable",
|
||||
"particle": "refinedstorage:blocks/cable",
|
||||
"line": "refinedstorage:blocks/cable_part"
|
||||
"line": "refinedstorage:blocks/importer_exporter_external_storage"
|
||||
},
|
||||
"model": "refinedstorage:cable_core",
|
||||
"uvlock": true
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
"textures": {
|
||||
"all": "refinedstorage:blocks/cable",
|
||||
"particle": "refinedstorage:blocks/cable",
|
||||
"line": "refinedstorage:blocks/cable_part"
|
||||
"line": "refinedstorage:blocks/importer_exporter_external_storage"
|
||||
},
|
||||
"model": "refinedstorage:cable_core",
|
||||
"uvlock": true
|
||||
|
||||
@@ -1,49 +1,60 @@
|
||||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "orientable",
|
||||
"model": "cube",
|
||||
"textures": {
|
||||
"side": "refinedstorage:blocks/side",
|
||||
"top": "refinedstorage:blocks/side",
|
||||
"front": "refinedstorage:blocks/grid_disconnected"
|
||||
"particle": "refinedstorage:blocks/side",
|
||||
"north": "refinedstorage:blocks/grid_disconnected",
|
||||
"east": "refinedstorage:blocks/grid_left",
|
||||
"south": "refinedstorage:blocks/grid_back",
|
||||
"west": "refinedstorage:blocks/grid_right",
|
||||
"up": "refinedstorage:blocks/grid_top",
|
||||
"down": "refinedstorage:blocks/bottom"
|
||||
}
|
||||
},
|
||||
"variants": {
|
||||
"connected": {
|
||||
"true": {
|
||||
"textures": {
|
||||
"front_fluid_grid": "refinedstorage:blocks/fluid_grid_connected",
|
||||
"front_other": "refinedstorage:blocks/grid_connected"
|
||||
"north_normal": "refinedstorage:blocks/grid_front_connected",
|
||||
"north_crafting": "refinedstorage:blocks/grid_crafting_front_connected",
|
||||
"north_pattern": "refinedstorage:blocks/grid_pattern_front_connected",
|
||||
"north_fluid": "refinedstorage:blocks/grid_fluid_front_connected"
|
||||
}
|
||||
},
|
||||
"false": {
|
||||
"textures": {
|
||||
"front_fluid_grid": "refinedstorage:blocks/fluid_grid_disconnected",
|
||||
"front_other": "refinedstorage:blocks/grid_disconnected"
|
||||
"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": {
|
||||
"normal": {
|
||||
"textures": {
|
||||
"front": "#front_other"
|
||||
"north": "#north_normal"
|
||||
}
|
||||
},
|
||||
"crafting": {
|
||||
"textures": {
|
||||
"front": "#front_other"
|
||||
"north": "#north_crafting"
|
||||
}
|
||||
},
|
||||
"pattern": {
|
||||
"textures": {
|
||||
"front": "#front_other"
|
||||
"north": "#north_pattern"
|
||||
}
|
||||
},
|
||||
"fluid": {
|
||||
"textures": {
|
||||
"front": "#front_fluid_grid",
|
||||
"side": "refinedstorage:blocks/fluid_grid_side",
|
||||
"top": "refinedstorage:blocks/fluid_grid_side"
|
||||
"north": "#north_fluid",
|
||||
"east": "refinedstorage:blocks/grid_fluid_left",
|
||||
"south": "refinedstorage:blocks/grid_fluid_back",
|
||||
"west": "refinedstorage:blocks/grid_fluid_right",
|
||||
"up": "refinedstorage:blocks/grid_fluid_top",
|
||||
"down": "refinedstorage:blocks/bottom"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
"textures": {
|
||||
"all": "refinedstorage:blocks/cable",
|
||||
"particle": "refinedstorage:blocks/cable",
|
||||
"line": "refinedstorage:blocks/cable_part"
|
||||
"line": "refinedstorage:blocks/importer_exporter_external_storage"
|
||||
},
|
||||
"model": "refinedstorage:cable_core",
|
||||
"uvlock": true
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"defaults": {
|
||||
"model": "cube_all",
|
||||
"textures": {
|
||||
"all": "refinedstorage:blocks/side"
|
||||
"all": "refinedstorage:blocks/casing"
|
||||
}
|
||||
},
|
||||
"variants": {
|
||||
|
||||
@@ -15,7 +15,8 @@
|
||||
"variants": {
|
||||
"inventory": [
|
||||
{
|
||||
"transform": "forge:default-block"
|
||||
"transform": "forge:default-block",
|
||||
"y": 0
|
||||
}
|
||||
],
|
||||
"normal": {
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
{
|
||||
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
|
||||
"textures": {
|
||||
"0": "refinedstorage:blocks/cable_new"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Core",
|
||||
@@ -15,57 +18,57 @@
|
||||
],
|
||||
"faces": {
|
||||
"north": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
4.0,
|
||||
4.0,
|
||||
8.0,
|
||||
8.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"east": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
0.0,
|
||||
4.0,
|
||||
4.0,
|
||||
8.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"south": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
12.0,
|
||||
4.0,
|
||||
16.0,
|
||||
8.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"west": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
8.0,
|
||||
4.0,
|
||||
12.0,
|
||||
8.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"up": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
8.0,
|
||||
4.0,
|
||||
4.0,
|
||||
0.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"down": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
12.0,
|
||||
0.0,
|
||||
8.0,
|
||||
4.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -84,58 +87,60 @@
|
||||
],
|
||||
"faces": {
|
||||
"north": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
4.0,
|
||||
4.0,
|
||||
8.0,
|
||||
8.0
|
||||
0.0,
|
||||
6.0,
|
||||
6.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"east": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
0.0,
|
||||
4.0,
|
||||
4.0,
|
||||
8.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"south": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
12.0,
|
||||
4.0,
|
||||
10.0,
|
||||
6.0,
|
||||
16.0,
|
||||
8.0
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"west": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
8.0,
|
||||
4.0,
|
||||
12.0,
|
||||
8.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"up": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
8.0,
|
||||
4.0,
|
||||
4.0,
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
0.0
|
||||
]
|
||||
],
|
||||
"rotation": 270
|
||||
},
|
||||
"down": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
12.0,
|
||||
0.0,
|
||||
8.0,
|
||||
4.0
|
||||
]
|
||||
6.0,
|
||||
10.0,
|
||||
10.0,
|
||||
16.0
|
||||
],
|
||||
"rotation": 270
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -153,58 +158,60 @@
|
||||
],
|
||||
"faces": {
|
||||
"north": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
4.0,
|
||||
4.0,
|
||||
8.0,
|
||||
8.0
|
||||
10.0,
|
||||
6.0,
|
||||
16.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"east": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
0.0,
|
||||
4.0,
|
||||
4.0,
|
||||
8.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"south": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
12.0,
|
||||
4.0,
|
||||
16.0,
|
||||
8.0
|
||||
0.0,
|
||||
6.0,
|
||||
6.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"west": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
8.0,
|
||||
4.0,
|
||||
12.0,
|
||||
8.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"up": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
8.0,
|
||||
4.0,
|
||||
4.0,
|
||||
10.0,
|
||||
6.0,
|
||||
6.0,
|
||||
0.0
|
||||
]
|
||||
],
|
||||
"rotation": 90
|
||||
},
|
||||
"down": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
12.0,
|
||||
0.0,
|
||||
8.0,
|
||||
4.0
|
||||
]
|
||||
6.0,
|
||||
10.0,
|
||||
10.0,
|
||||
16.0
|
||||
],
|
||||
"rotation": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
{
|
||||
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
|
||||
"textures": {
|
||||
"0": "refinedstorage:blocks/cable_new"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Core",
|
||||
@@ -15,57 +18,57 @@
|
||||
],
|
||||
"faces": {
|
||||
"north": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
4.0,
|
||||
4.0,
|
||||
8.0,
|
||||
8.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"east": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
0.0,
|
||||
4.0,
|
||||
4.0,
|
||||
8.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"south": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
12.0,
|
||||
4.0,
|
||||
16.0,
|
||||
8.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"west": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
8.0,
|
||||
4.0,
|
||||
12.0,
|
||||
8.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"up": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
8.0,
|
||||
4.0,
|
||||
4.0,
|
||||
0.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"down": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
12.0,
|
||||
0.0,
|
||||
8.0,
|
||||
4.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
{
|
||||
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
|
||||
"textures": {
|
||||
"0": "refinedstorage:blocks/cable_new"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Down",
|
||||
@@ -15,57 +18,57 @@
|
||||
],
|
||||
"faces": {
|
||||
"north": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
4.0,
|
||||
4.0,
|
||||
8.0,
|
||||
8.0
|
||||
6.0,
|
||||
10.0,
|
||||
10.0,
|
||||
16.0
|
||||
]
|
||||
},
|
||||
"east": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
0.0,
|
||||
4.0,
|
||||
4.0,
|
||||
8.0
|
||||
6.0,
|
||||
10.0,
|
||||
10.0,
|
||||
16.0
|
||||
]
|
||||
},
|
||||
"south": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
12.0,
|
||||
4.0,
|
||||
16.0,
|
||||
8.0
|
||||
6.0,
|
||||
10.0,
|
||||
10.0,
|
||||
16.0
|
||||
]
|
||||
},
|
||||
"west": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
8.0,
|
||||
4.0,
|
||||
12.0,
|
||||
8.0
|
||||
6.0,
|
||||
10.0,
|
||||
10.0,
|
||||
16.0
|
||||
]
|
||||
},
|
||||
"up": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
8.0,
|
||||
4.0,
|
||||
4.0,
|
||||
0.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"down": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
12.0,
|
||||
0.0,
|
||||
8.0,
|
||||
4.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
{
|
||||
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
|
||||
"textures": {
|
||||
"0": "refinedstorage:blocks/cable_new"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "East",
|
||||
@@ -15,57 +18,57 @@
|
||||
],
|
||||
"faces": {
|
||||
"north": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
4.0,
|
||||
4.0,
|
||||
8.0,
|
||||
8.0
|
||||
0.0,
|
||||
6.0,
|
||||
6.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"east": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
0.0,
|
||||
4.0,
|
||||
4.0,
|
||||
8.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"south": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
12.0,
|
||||
4.0,
|
||||
10.0,
|
||||
6.0,
|
||||
16.0,
|
||||
8.0
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"west": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
8.0,
|
||||
4.0,
|
||||
12.0,
|
||||
8.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"up": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
8.0,
|
||||
4.0,
|
||||
4.0,
|
||||
0.0
|
||||
10.0,
|
||||
6.0,
|
||||
16.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"down": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
12.0,
|
||||
0.0,
|
||||
8.0,
|
||||
4.0
|
||||
10.0,
|
||||
6.0,
|
||||
16.0,
|
||||
10.0
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
{
|
||||
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
|
||||
"textures": {
|
||||
"0": "refinedstorage:blocks/cable_new"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "North",
|
||||
@@ -15,57 +18,57 @@
|
||||
],
|
||||
"faces": {
|
||||
"north": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
4.0,
|
||||
4.0,
|
||||
8.0,
|
||||
8.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"east": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
0.0,
|
||||
4.0,
|
||||
4.0,
|
||||
8.0
|
||||
10.0,
|
||||
6.0,
|
||||
16.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"south": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
12.0,
|
||||
4.0,
|
||||
16.0,
|
||||
8.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"west": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
8.0,
|
||||
4.0,
|
||||
12.0,
|
||||
8.0
|
||||
0.0,
|
||||
6.0,
|
||||
6.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"up": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
8.0,
|
||||
4.0,
|
||||
4.0,
|
||||
0.0
|
||||
6.0,
|
||||
0.0,
|
||||
10.0,
|
||||
6.0
|
||||
]
|
||||
},
|
||||
"down": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
12.0,
|
||||
0.0,
|
||||
8.0,
|
||||
4.0
|
||||
6.0,
|
||||
10.0,
|
||||
10.0,
|
||||
16.0
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
{
|
||||
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
|
||||
"textures": {
|
||||
"0": "refinedstorage:blocks/cable_new"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "South",
|
||||
@@ -15,57 +18,57 @@
|
||||
],
|
||||
"faces": {
|
||||
"north": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
4.0,
|
||||
4.0,
|
||||
8.0,
|
||||
8.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"east": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
0.0,
|
||||
4.0,
|
||||
4.0,
|
||||
8.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"south": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
12.0,
|
||||
4.0,
|
||||
16.0,
|
||||
8.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"west": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
8.0,
|
||||
4.0,
|
||||
12.0,
|
||||
8.0
|
||||
10.0,
|
||||
6.0,
|
||||
16.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"up": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
8.0,
|
||||
4.0,
|
||||
4.0,
|
||||
0.0
|
||||
6.0,
|
||||
10.0,
|
||||
10.0,
|
||||
16.0
|
||||
]
|
||||
},
|
||||
"down": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
12.0,
|
||||
6.0,
|
||||
0.0,
|
||||
8.0,
|
||||
4.0
|
||||
10.0,
|
||||
6.0
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
{
|
||||
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
|
||||
"textures": {
|
||||
"0": "refinedstorage:blocks/cable_new"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Up",
|
||||
@@ -15,57 +18,57 @@
|
||||
],
|
||||
"faces": {
|
||||
"north": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
4.0,
|
||||
4.0,
|
||||
8.0,
|
||||
8.0
|
||||
6.0,
|
||||
0.0,
|
||||
10.0,
|
||||
6.0
|
||||
]
|
||||
},
|
||||
"east": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
0.0,
|
||||
4.0,
|
||||
4.0,
|
||||
8.0
|
||||
6.0,
|
||||
16.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"south": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
12.0,
|
||||
4.0,
|
||||
16.0,
|
||||
8.0
|
||||
6.0,
|
||||
0.0,
|
||||
10.0,
|
||||
6.0
|
||||
]
|
||||
},
|
||||
"west": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
8.0,
|
||||
4.0,
|
||||
12.0,
|
||||
8.0
|
||||
6.0,
|
||||
16.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"up": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
8.0,
|
||||
4.0,
|
||||
4.0,
|
||||
0.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"down": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
12.0,
|
||||
0.0,
|
||||
8.0,
|
||||
4.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
{
|
||||
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
|
||||
"textures": {
|
||||
"0": "refinedstorage:blocks/cable_new"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "West",
|
||||
@@ -15,58 +18,60 @@
|
||||
],
|
||||
"faces": {
|
||||
"north": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
4.0,
|
||||
4.0,
|
||||
8.0,
|
||||
8.0
|
||||
10.0,
|
||||
6.0,
|
||||
16.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"east": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
0.0,
|
||||
4.0,
|
||||
4.0,
|
||||
8.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"south": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
12.0,
|
||||
4.0,
|
||||
16.0,
|
||||
8.0
|
||||
0.0,
|
||||
6.0,
|
||||
6.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"west": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
8.0,
|
||||
4.0,
|
||||
12.0,
|
||||
8.0
|
||||
6.0,
|
||||
6.0,
|
||||
10.0,
|
||||
10.0
|
||||
]
|
||||
},
|
||||
"up": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
8.0,
|
||||
4.0,
|
||||
4.0,
|
||||
10.0,
|
||||
6.0,
|
||||
6.0,
|
||||
0.0
|
||||
]
|
||||
],
|
||||
"rotation": 90
|
||||
},
|
||||
"down": {
|
||||
"texture": "#all",
|
||||
"texture": "#0",
|
||||
"uv": [
|
||||
12.0,
|
||||
0.0,
|
||||
8.0,
|
||||
4.0
|
||||
]
|
||||
10.0,
|
||||
10.0,
|
||||
6.0,
|
||||
16.0
|
||||
],
|
||||
"rotation": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
{
|
||||
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
|
||||
"textures": {
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Line1",
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
{
|
||||
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
|
||||
"textures": {
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Line1",
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
{
|
||||
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
|
||||
"textures": {
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Line1",
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
{
|
||||
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
|
||||
"textures": {
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Line1",
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
{
|
||||
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
|
||||
"textures": {
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Line1",
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
{
|
||||
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
|
||||
"textures": {
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Line1",
|
||||
|
||||
|
Before Width: | Height: | Size: 799 B After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 795 B After Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 784 B After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 806 B After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 803 B After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 813 B After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 805 B After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 769 B After Width: | Height: | Size: 16 KiB |
BIN
src/main/resources/assets/refinedstorage/textures/blocks/bottom.png
Executable file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
src/main/resources/assets/refinedstorage/textures/blocks/cable.png
Normal file → Executable file
|
Before Width: | Height: | Size: 648 B After Width: | Height: | Size: 1.2 KiB |
BIN
src/main/resources/assets/refinedstorage/textures/blocks/cable_new.png
Executable file
|
After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 202 B After Width: | Height: | Size: 15 KiB |
BIN
src/main/resources/assets/refinedstorage/textures/blocks/cable_striped.png
Executable file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
src/main/resources/assets/refinedstorage/textures/blocks/casing.png
Executable file
|
After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 736 B After Width: | Height: | Size: 16 KiB |
BIN
src/main/resources/assets/refinedstorage/textures/blocks/constructor_on.png
Executable file
|
After Width: | Height: | Size: 4.4 KiB |
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"animation": {
|
||||
"frametime": 2,
|
||||
"frames": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
6,
|
||||
7,
|
||||
8,
|
||||
9,
|
||||
10,
|
||||
11
|
||||
]
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 780 B After Width: | Height: | Size: 1.3 KiB |
BIN
src/main/resources/assets/refinedstorage/textures/blocks/controller_1.png
Normal file → Executable file
|
Before Width: | Height: | Size: 815 B After Width: | Height: | Size: 3.4 KiB |
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"animation": {
|
||||
"frametime": 1,
|
||||
"frames": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
6,
|
||||
7,
|
||||
8,
|
||||
9,
|
||||
10,
|
||||
11
|
||||
]
|
||||
}
|
||||
}
|
||||
BIN
src/main/resources/assets/refinedstorage/textures/blocks/controller_2.png
Normal file → Executable file
|
Before Width: | Height: | Size: 817 B After Width: | Height: | Size: 3.4 KiB |
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"animation": {
|
||||
"frametime": 2,
|
||||
"frames": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
6,
|
||||
7,
|
||||
8,
|
||||
9,
|
||||
10,
|
||||
11
|
||||
]
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 805 B |
|
Before Width: | Height: | Size: 802 B |
|
Before Width: | Height: | Size: 798 B |
|
Before Width: | Height: | Size: 798 B |
|
Before Width: | Height: | Size: 799 B |
BIN
src/main/resources/assets/refinedstorage/textures/blocks/controller_on.png
Executable file
|
After Width: | Height: | Size: 3.6 KiB |
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"animation": {
|
||||
"frametime": 2,
|
||||
"frames": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
6,
|
||||
7,
|
||||
8,
|
||||
9,
|
||||
10,
|
||||
11
|
||||
]
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
BIN
src/main/resources/assets/refinedstorage/textures/blocks/crafter_bottom.png
Executable file
|
After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 766 B |
|
Before Width: | Height: | Size: 775 B |
BIN
src/main/resources/assets/refinedstorage/textures/blocks/crafter_front.png
Executable file
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
BIN
src/main/resources/assets/refinedstorage/textures/blocks/crafter_side.png
Executable file
|
After Width: | Height: | Size: 735 B |
BIN
src/main/resources/assets/refinedstorage/textures/blocks/crafter_side_180.png
Executable file
|
After Width: | Height: | Size: 714 B |
BIN
src/main/resources/assets/refinedstorage/textures/blocks/crafter_side_270.png
Executable file
|
After Width: | Height: | Size: 735 B |
BIN
src/main/resources/assets/refinedstorage/textures/blocks/crafter_side_90.png
Executable file
|
After Width: | Height: | Size: 717 B |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 758 B |
|
After Width: | Height: | Size: 767 B |
|
After Width: | Height: | Size: 761 B |
BIN
src/main/resources/assets/refinedstorage/textures/blocks/crafter_top.png
Executable file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
src/main/resources/assets/refinedstorage/textures/blocks/crafter_top_alt.png
Executable file
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 777 B After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
BIN
src/main/resources/assets/refinedstorage/textures/blocks/crafting_monitor_disconnected.png
Normal file → Executable file
|
Before Width: | Height: | Size: 738 B After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 818 B After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 809 B After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 664 B After Width: | Height: | Size: 15 KiB |
BIN
src/main/resources/assets/refinedstorage/textures/blocks/destructor_on.png
Executable file
|
After Width: | Height: | Size: 5.8 KiB |
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"animation": {
|
||||
"frametime": 1,
|
||||
"frames": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
6,
|
||||
7,
|
||||
8,
|
||||
9,
|
||||
10,
|
||||
11,
|
||||
12,
|
||||
13,
|
||||
14,
|
||||
15,
|
||||
16,
|
||||
17,
|
||||
18,
|
||||
19
|
||||
]
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |