fixed nbt breaking and rendering issues
This commit is contained in:
@@ -6,7 +6,7 @@ org.gradle.jvmargs=-Xmx3G
|
||||
mod_group=nmd.primal.forgecraft
|
||||
mod_name=ForgeCraft
|
||||
|
||||
mod_version=1.6.04
|
||||
mod_version=1.6.05
|
||||
forge_version=14.23.4.2744
|
||||
mcp_mappings=snapshot_20171003
|
||||
mc_version=1.12.2
|
||||
|
||||
@@ -21,7 +21,7 @@ public class ModInfo {
|
||||
//public static final String MOD_PREFIX = MOD_ID + ":";
|
||||
public static final String MOD_CHANNEL = MOD_ID;
|
||||
|
||||
public static final String MOD_VERSION = "1.6.04";
|
||||
public static final String MOD_VERSION = "1.6.05";
|
||||
public static final String MC_VERSIONS = "[1.12.0, 1.13.0)";
|
||||
public static final String DEPENDENCIES = "required-after:forge@[14.21.1.2400,);" + "required-after:primal@[0.6.69,);";
|
||||
|
||||
|
||||
@@ -60,8 +60,8 @@ public class NBTCrucible extends BlockContainer implements ITileEntityProvider {
|
||||
if (!world.isRemote) {
|
||||
if(hand == player.getActiveHand()) {
|
||||
TileNBTCrucible tile = (TileNBTCrucible) world.getTileEntity(pos);
|
||||
ItemStack pItem = player.inventory.getCurrentItem();
|
||||
ItemStack pItem1 = new ItemStack(pItem.getItem(), 1);
|
||||
ItemStack pItem = player.inventory.getCurrentItem().copy();
|
||||
pItem.setCount(1);
|
||||
|
||||
/**PICKS UP THE CRUCIBLE**/
|
||||
if (player.isSneaking() == false) {
|
||||
@@ -82,22 +82,24 @@ public class NBTCrucible extends BlockContainer implements ITileEntityProvider {
|
||||
if (pItem.getItem() instanceof SlottedTongs) {
|
||||
return false;
|
||||
} else {
|
||||
pItem.setCount(1);
|
||||
for (int i = 1; i < tile.ingList.size()+1; i++) {
|
||||
if (tile.ingList.get(i-1).isEmpty()) {
|
||||
tile.ingList.set(i-1, pItem1);
|
||||
pItem.shrink(1);
|
||||
tile.ingList.set(i-1, pItem);
|
||||
tile.setHot(i);
|
||||
world.setBlockState(pos, state.withProperty(PrimalAPI.States.LAYERS, i), 2);
|
||||
player.inventory.getCurrentItem().shrink(1);
|
||||
tile.update();
|
||||
tile.markDirty();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
/**CLEARS THE INVENTORY**/
|
||||
if (player.isSneaking() == true) {
|
||||
if (player.isSneaking()) {
|
||||
if (pItem.isEmpty()) {
|
||||
if (tile.getHot()!=15) {
|
||||
if (!tile.getStatus()) {
|
||||
@@ -179,19 +181,18 @@ public class NBTCrucible extends BlockContainer implements ITileEntityProvider {
|
||||
{
|
||||
if (!world.isRemote) {
|
||||
TileNBTCrucible tile = (TileNBTCrucible) world.getTileEntity(pos);
|
||||
ItemStack pItem = player.inventory.getCurrentItem();
|
||||
CrucibleCrafting recipe = CrucibleCrafting.getRecipe(tile.ingList.get(0), tile.ingList.get(1), tile.ingList.get(2), tile.ingList.get(3), tile.ingList.get(4));
|
||||
if(recipe != null && tile.getStatus() && tile.getHot() == 6){
|
||||
if(tile.getDrops() != null) {
|
||||
PlayerHelper.spawnItemOnPlayer(world, player, tile.getDrops());
|
||||
} else {
|
||||
PlayerHelper.spawnItemOnPlayer(world, player, recipe.getDropsCooked());
|
||||
} else {
|
||||
PlayerHelper.spawnItemOnPlayer(world, player, recipe.getDropsRaw());
|
||||
}
|
||||
}
|
||||
if(recipe != null && tile.getStatus() && tile.getHot() == 15){
|
||||
PlayerHelper.spawnItemOnPlayer(world, player, recipe.getDropsRaw());
|
||||
}
|
||||
if(recipe != null && tile.getStatus() && tile.getHot() != 15 && tile.getHot() != 6){
|
||||
if(!tile.getStatus() && tile.getHot() != 15 && tile.getHot() != 6){
|
||||
PlayerHelper.spawnItemOnPlayer(world, player, tile.ingList);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -329,6 +329,13 @@ public class ModCrafting{
|
||||
1800,
|
||||
1500);
|
||||
|
||||
|
||||
NBTTagCompound tagBronzeDefault = new NBTTagCompound();
|
||||
tagBronzeDefault.setString("upgrades", "");
|
||||
tagBronzeDefault.setBoolean("hot", false);
|
||||
ItemStack defaultBronze = new ItemStack(ModItems.bronzeingotball, 1);
|
||||
defaultBronze.setTagCompound(tagBronzeDefault.copy());
|
||||
|
||||
CrucibleCrafting.addRecipe(
|
||||
new OreIngredient("dustCopper"),
|
||||
new OreIngredient("dustCopper"),
|
||||
@@ -336,16 +343,13 @@ public class ModCrafting{
|
||||
new OreIngredient("dustTin"),
|
||||
Ingredient.EMPTY,
|
||||
new ItemStack(PrimalAPI.Items.SLAG, 1),
|
||||
new ItemStack(ModItems.bronzeingotball, 1),
|
||||
defaultBronze,
|
||||
1100,
|
||||
800,
|
||||
600);
|
||||
|
||||
NBTTagCompound tagBronzeDefault = new NBTTagCompound();
|
||||
tagBronzeDefault.setString("upgrades", "");
|
||||
ItemStack defaultBronze = new ItemStack(ModItems.bronzeingotball, 1);
|
||||
defaultBronze.setTagCompound(tagBronzeDefault.copy());
|
||||
CrucibleCrafting.addRecipe(
|
||||
|
||||
/*CrucibleCrafting.addRecipe(
|
||||
new OreIngredient("oreBronze"),
|
||||
Ingredient.EMPTY,
|
||||
Ingredient.EMPTY,
|
||||
@@ -356,6 +360,7 @@ public class ModCrafting{
|
||||
1100,
|
||||
800,
|
||||
600);
|
||||
*/
|
||||
|
||||
CrucibleCrafting.addRecipe(
|
||||
new OreIngredient("ingotBronze"),
|
||||
@@ -369,10 +374,12 @@ public class ModCrafting{
|
||||
800,
|
||||
600);
|
||||
|
||||
NBTTagCompound tag = new NBTTagCompound();
|
||||
tag.setString("upgrades", "redstone");
|
||||
ItemStack redBronze = new ItemStack(ModItems.bronzeingotball, 1);
|
||||
redBronze.setTagCompound(tag.copy());
|
||||
//NBTTagCompound tag = new NBTTagCompound();
|
||||
//tag.setString("upgrades", "redstone");
|
||||
//ItemStack redBronze = new ItemStack(ModItems.bronzeingotball, 1);
|
||||
//redBronze.setTagCompound(tag.copy());
|
||||
ItemStack redBronze = defaultBronze.copy();
|
||||
redBronze.getTagCompound().setString("upgrades", "redstone");
|
||||
CrucibleCrafting.addRecipe(
|
||||
new OreIngredient("ingotBronze"),
|
||||
new OreIngredient("dustRedstone"),
|
||||
@@ -385,10 +392,8 @@ public class ModCrafting{
|
||||
800,
|
||||
600);
|
||||
|
||||
NBTTagCompound diamondBronzeTag = new NBTTagCompound();
|
||||
tag.setString("upgrades", "diamond");
|
||||
ItemStack diamondBronze = new ItemStack(ModItems.bronzeingotball, 1);
|
||||
diamondBronze.setTagCompound(diamondBronzeTag.copy());
|
||||
ItemStack diamondBronze = defaultBronze.copy();
|
||||
diamondBronze.getTagCompound().setString("upgrades", "diamond");
|
||||
CrucibleCrafting.addRecipe(
|
||||
new OreIngredient("ingotBronze"),
|
||||
new OreIngredient("dustDiamond"),
|
||||
@@ -401,10 +406,8 @@ public class ModCrafting{
|
||||
800,
|
||||
600);
|
||||
|
||||
NBTTagCompound emeraldBronzeTag = new NBTTagCompound();
|
||||
tag.setString("upgrades", "emerald");
|
||||
ItemStack emeraldBronze = new ItemStack(ModItems.bronzeingotball, 1);
|
||||
emeraldBronze.setTagCompound(emeraldBronzeTag.copy());
|
||||
ItemStack emeraldBronze = defaultBronze.copy();
|
||||
emeraldBronze.getTagCompound().setString("upgrades", "emerald");
|
||||
CrucibleCrafting.addRecipe(
|
||||
new OreIngredient("ingotBronze"),
|
||||
new OreIngredient("dustEmerald"),
|
||||
@@ -417,10 +420,8 @@ public class ModCrafting{
|
||||
800,
|
||||
600);
|
||||
|
||||
NBTTagCompound tagBronzeLapis = new NBTTagCompound();
|
||||
tagBronzeDefault.setString("upgrades", "lapis");
|
||||
ItemStack lapisBronze = new ItemStack(ModItems.bronzeingotball, 1);
|
||||
lapisBronze.setTagCompound(tagBronzeLapis.copy());
|
||||
ItemStack lapisBronze = defaultBronze.copy();
|
||||
lapisBronze.getTagCompound().setString("upgrades", "lapis");
|
||||
CrucibleCrafting.addRecipe(
|
||||
new OreIngredient("ingotBronze"),
|
||||
new OreIngredient("dustLapis"),
|
||||
|
||||
@@ -42,6 +42,7 @@ public class BaseMultiItem extends BaseItem {
|
||||
Item itemStack = stack.getItem();
|
||||
//TODO get the item name
|
||||
if (stack.getItem() instanceof BaseMultiItem) {
|
||||
|
||||
if(stack.getTagCompound() != null) {
|
||||
/***INGOTS***/
|
||||
if(itemStack.equals(ModItems.ironingotball)) {
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"particle": "blocks/stone_slab",
|
||||
"texture": "blocks/stone_slab",
|
||||
"particle": "primal:blocks/adobe_brick",
|
||||
"texture": "primal:blocks/adobe_brick",
|
||||
"texture1": "primal:blocks/adobe_brick",
|
||||
"texture2": "primal:blocks/adobe_brick_mortar"
|
||||
},
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"particle": "forgecraft:blocks/stone_slab",
|
||||
"texture": "forgecraft:blocks/stone_slab",
|
||||
"particle": "primal:blocks/adobe_brick",
|
||||
"texture": "primal:blocks/adobe_brick",
|
||||
"texture1": "primal:blocks/adobe_brick",
|
||||
"texture2": "primal:blocks/adobe_brick_mortar",
|
||||
"texture3": "forgecraft:blocks/adobebrick_lit"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"parent": "forgecraft:item/ironchunk",
|
||||
"textures": {
|
||||
"particle": "forgecraft:blocks/bronze_ingot",
|
||||
"texture": "forgecraft:blocks/bronze_ingot"
|
||||
"particle": "forgecraft:blocks/bronze_block",
|
||||
"texture": "forgecraft:blocks/bronze_block"
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"parent": "forgecraft:item/ironball",
|
||||
"textures": {
|
||||
"particle": "forgecraft:blocks/bronze_ingot",
|
||||
"texture": "forgecraft:blocks/bronze_ingot"
|
||||
"particle": "forgecraft:blocks/bronze_block",
|
||||
"texture": "forgecraft:blocks/bronze_block"
|
||||
}
|
||||
}
|
||||
@@ -654,8 +654,6 @@
|
||||
"scale": [ 0.5, 0.875, 0.75 ]
|
||||
},
|
||||
"firstperson_righthand": {
|
||||
"rotation": [ 130, 3, 5 ],
|
||||
"translation": [ -2, 0, 0 ],
|
||||
"scale": [ 0.5, 0.875, 0.75 ]
|
||||
},
|
||||
"firstperson_lefthand": {
|
||||
|
||||
@@ -0,0 +1,678 @@
|
||||
{
|
||||
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
|
||||
"textures": {
|
||||
"particle": "items/unstrunglongbow",
|
||||
"texture": "items/unstrunglongbow",
|
||||
"texture1": "items/bowstring",
|
||||
"arrow": "items/arrow"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "Box7",
|
||||
"from": [ 6.5, 5, 6.5 ],
|
||||
"to": [ 9.5, 11, 8.5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 6.5, 7.5, 9.5, 9.5 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 6.5, 6.5, 9.5, 8.5 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 6.5, 5, 9.5, 11 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 6.5, 5, 9.5, 11 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 6.5, 5, 8.5, 11 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 7.5, 5, 9.5, 11 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "1base1",
|
||||
"from": [ 7, 11, 7 ],
|
||||
"to": [ 9, 12, 8.5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 7, 4, 8.5, 5 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 7.5, 4, 9, 5 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "1base2",
|
||||
"from": [ 7, 12, 7 ],
|
||||
"to": [ 9, 13, 8.5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 7, 3, 8.5, 4 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 7.5, 3, 9, 4 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "1base",
|
||||
"from": [ 7, 13, 7 ],
|
||||
"to": [ 9, 14, 8.5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 7, 2, 8.5, 3 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 7.5, 2, 9, 3 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "1base",
|
||||
"from": [ 7, 4, 7 ],
|
||||
"to": [ 9, 5, 8.5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 7, 11, 8.5, 12 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 7.5, 11, 9, 12 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "1base1",
|
||||
"from": [ 7, 3, 7 ],
|
||||
"to": [ 9, 4, 8.5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 7, 12, 8.5, 13 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 7.5, 12, 9, 13 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "1base2",
|
||||
"from": [ 7, 2, 7 ],
|
||||
"to": [ 9, 3, 8.5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 7, 13, 8.5, 14 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 7.5, 13, 9, 14 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "2base1",
|
||||
"from": [ 7, 14, 7 ],
|
||||
"to": [ 9, 15, 8.5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 7.5, 0, 9, 1 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 7, 0, 8.5, 1 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "2base2",
|
||||
"from": [ 7, 15, 7.5 ],
|
||||
"to": [ 9, 16, 9 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 7.5, 15, 9, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 7, 15, 8.5, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "2base",
|
||||
"from": [ 7, 16, 7.5 ],
|
||||
"to": [ 9, 17, 9 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 7.5, 14, 9, 15 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 7, 14, 8.5, 15 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "2base",
|
||||
"from": [ 7, -1, 7.5 ],
|
||||
"to": [ 9, 0, 9 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7, 0, 9, 1 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 7.5, 0, 9, 1 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 7, 0, 8.5, 1 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "2base1",
|
||||
"from": [ 7, 0, 7.5 ],
|
||||
"to": [ 9, 1, 9 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7, 15, 9, 16 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 7.5, 15, 9, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 7, 15, 8.5, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "2base2",
|
||||
"from": [ 7, 1, 7 ],
|
||||
"to": [ 9, 2, 8.5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 7, 9, 8.5 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7, 7.5, 9, 9 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 7.5, 14, 9, 15 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 7, 14, 8.5, 15 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "3base",
|
||||
"from": [ 7, -2, 7.5 ],
|
||||
"to": [ 9, -1, 9 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7, 1, 9, 2 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7, 1, 9, 2 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 8, 1, 9.5, 2 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 6.5, 1, 8, 2 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "3base1",
|
||||
"from": [ 7, -4, 8 ],
|
||||
"to": [ 9, -3, 9.5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7, 3, 9, 4 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 8, 3, 9.5, 4 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 6.5, 3, 8, 4 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "3base2",
|
||||
"from": [ 7, -3, 7.5 ],
|
||||
"to": [ 9, -2, 9 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7, 2, 9, 3 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 8, 2, 9.5, 3 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 6.5, 2, 8, 3 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "3base",
|
||||
"from": [ 7, 19, 8 ],
|
||||
"to": [ 9, 20, 9.5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7, 12, 9, 13 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 8, 12, 9.5, 13 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 6.5, 12, 8, 13 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "3base1",
|
||||
"from": [ 7, 17, 7.5 ],
|
||||
"to": [ 9, 18, 9 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7, 14, 9, 15 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 8, 14, 9.5, 15 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 6.5, 14, 8, 15 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "3base2",
|
||||
"from": [ 7, 18, 7.5 ],
|
||||
"to": [ 9, 19, 9 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 6.5, 9, 8 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7, 8, 9, 9.5 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7, 13, 9, 14 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 8, 13, 9.5, 14 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 6.5, 13, 8, 14 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "4base",
|
||||
"from": [ 7, 21, 8 ],
|
||||
"to": [ 9, 22, 9.5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7, 10, 9, 11 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 8.5, 10, 10, 11 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 6, 10, 7.5, 11 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "4base1",
|
||||
"from": [ 7, 22, 8.5 ],
|
||||
"to": [ 9, 23, 10 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7, 9, 9, 10 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 8.5, 9, 10, 10 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 6, 9, 7.5, 10 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "4base2",
|
||||
"from": [ 7, 20, 8 ],
|
||||
"to": [ 9, 21, 9.5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7, 11, 9, 12 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 8.5, 11, 10, 12 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 6, 11, 7.5, 12 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "4base",
|
||||
"from": [ 7, -5, 8 ],
|
||||
"to": [ 9, -4, 9.5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7, 4, 9, 5 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 8.5, 4, 10, 5 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 6, 4, 7.5, 5 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "4base1",
|
||||
"from": [ 7, -7, 8.5 ],
|
||||
"to": [ 9, -6, 10 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7, 6, 9, 7 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7, 6, 9, 7 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 8.5, 6, 10, 7 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 6, 6, 7.5, 7 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "4base2",
|
||||
"from": [ 7, -6, 8 ],
|
||||
"to": [ 9, -5, 9.5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7, 6, 9, 7.5 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7, 8.5, 9, 10 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7, 5, 9, 6 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7, 5, 9, 6 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 8.5, 5, 10, 6 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 6, 5, 7.5, 6 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box39",
|
||||
"from": [ 7.5, 23, 9 ],
|
||||
"to": [ 8.5, 24, 10 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7.5, 6, 8.5, 7 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7.5, 9, 8.5, 10 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 9, 8, 10, 9 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 6, 8, 7, 9 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box39",
|
||||
"from": [ 7.5, 24, 9 ],
|
||||
"to": [ 8.5, 25, 10 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box39",
|
||||
"from": [ 7.5, 25, 9.5 ],
|
||||
"to": [ 8.5, 26, 10.5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box39",
|
||||
"from": [ 7.5, 26, 9.5 ],
|
||||
"to": [ 8.5, 27, 10.5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7.5, 10, 8.5, 11 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7.5, 5, 8.5, 6 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 10, 5, 11, 6 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 5, 5, 6, 6 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box39",
|
||||
"from": [ 7.5, 28, 10 ],
|
||||
"to": [ 8.5, 29, 11 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 11, 1, 12, 2 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 4, 1, 5, 2 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box39",
|
||||
"from": [ 7.5, 27, 10 ],
|
||||
"to": [ 8.5, 28, 11 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7.5, 4.5, 8.5, 5.5 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7.5, 10.5, 8.5, 11.5 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 10.5, 2, 11.5, 3 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 4.5, 2, 5.5, 3 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box39",
|
||||
"from": [ 7.5, 30, 11 ],
|
||||
"to": [ 8.5, 31, 12 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7.5, 1, 8.5, 2 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 11, 1, 12, 2 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 4, 1, 5, 2 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box39",
|
||||
"from": [ 7.5, 29, 10.5 ],
|
||||
"to": [ 8.5, 30, 11.5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7.5, 4.5, 8.5, 5.5 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7.5, 10.5, 8.5, 11.5 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7.5, 2, 8.5, 3 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 10.5, 2, 11.5, 3 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 4.5, 2, 5.5, 3 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box39",
|
||||
"from": [ 7.5, -10, 9.5 ],
|
||||
"to": [ 8.5, -9, 10.5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7.5, 9, 8.5, 10 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7.5, 9, 8.5, 10 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 9.5, 9, 10.5, 10 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 5.5, 9, 6.5, 10 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box39",
|
||||
"from": [ 7.5, -9, 9 ],
|
||||
"to": [ 8.5, -8, 10 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7.5, 8, 8.5, 9 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 9.5, 8, 10.5, 9 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 5.5, 8, 6.5, 9 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box39",
|
||||
"from": [ 7.5, -8, 9 ],
|
||||
"to": [ 8.5, -7, 10 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7.5, 5.5, 8.5, 6.5 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7.5, 9.5, 8.5, 10.5 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7.5, 7, 8.5, 8 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 9.5, 7, 10.5, 8 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 5.5, 7, 6.5, 8 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box39",
|
||||
"from": [ 7.5, -11, 9.5 ],
|
||||
"to": [ 8.5, -10, 10.5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box39",
|
||||
"from": [ 7.5, -12, 10 ],
|
||||
"to": [ 8.5, -11, 11 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box39",
|
||||
"from": [ 7.5, -13, 10 ],
|
||||
"to": [ 8.5, -12, 11 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box39",
|
||||
"from": [ 7.5, -14, 10.5 ],
|
||||
"to": [ 8.5, -13, 11.5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box39",
|
||||
"from": [ 7.5, -15, 11 ],
|
||||
"to": [ 8.5, -14, 12 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7.5, 4, 8.5, 5 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 7.5, 11, 8.5, 12 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 7.5, 14, 8.5, 15 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 11, 14, 12, 15 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 4, 14, 5, 15 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "arrow",
|
||||
"from": [ 7.5, 8, -6 ],
|
||||
"to": [ 8, 8.5, 14 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 7.5, 0, 8, 12.5 ], "texture": "#arrow", "rotation": 180 },
|
||||
"up": { "uv": [ 7.5, 0, 8, 12.5 ], "texture": "#arrow" },
|
||||
"north": { "uv": [ 7, 0, 7.5, 0.5 ], "texture": "#arrow" },
|
||||
"south": { "uv": [ 7.5, 7.5, 8, 8 ], "texture": "#arrow" },
|
||||
"west": { "uv": [ 7.5, 0, 8, 12.5 ], "texture": "#arrow", "rotation": 270 },
|
||||
"east": { "uv": [ 7.5, 0, 8, 12.5 ], "texture": "#arrow", "rotation": 90 }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX45",
|
||||
"from": [ 8, 8, 14 ],
|
||||
"to": [ 8.001, 12.5, 14.5 ],
|
||||
"faces": {
|
||||
"west": { "uv": [ 14, 3.5, 14.5, 8 ], "texture": "#texture1" },
|
||||
"east": { "uv": [ 1.5, 3.5, 2, 8 ], "texture": "#texture1" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX45",
|
||||
"from": [ 8, 3.5, 14 ],
|
||||
"to": [ 8.001, 8, 14.5 ],
|
||||
"faces": {
|
||||
"west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" },
|
||||
"east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX45",
|
||||
"from": [ 8, 12.5, 13.5 ],
|
||||
"to": [ 8.001, 17, 14 ],
|
||||
"faces": {
|
||||
"west": { "uv": [ 14, 3.5, 14.5, 8 ], "texture": "#texture1" },
|
||||
"east": { "uv": [ 1.5, 3.5, 2, 8 ], "texture": "#texture1" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX45",
|
||||
"from": [ 8, 17, 13 ],
|
||||
"to": [ 8.001, 21.5, 13.5 ],
|
||||
"faces": {
|
||||
"west": { "uv": [ 14, 3.5, 14.5, 8 ], "texture": "#texture1" },
|
||||
"east": { "uv": [ 1.5, 3.5, 2, 8 ], "texture": "#texture1" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX45",
|
||||
"from": [ 8, 21.5, 12.5 ],
|
||||
"to": [ 8.001, 26, 13 ],
|
||||
"faces": {
|
||||
"west": { "uv": [ 14, 3.5, 14.5, 8 ], "texture": "#texture1" },
|
||||
"east": { "uv": [ 1.5, 3.5, 2, 8 ], "texture": "#texture1" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX45",
|
||||
"from": [ 8, 26, 12 ],
|
||||
"to": [ 8.001, 30.5, 12.5 ],
|
||||
"faces": {
|
||||
"west": { "uv": [ 14, 3.5, 14.5, 8 ], "texture": "#texture1" },
|
||||
"east": { "uv": [ 1.5, 3.5, 2, 8 ], "texture": "#texture1" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX45",
|
||||
"from": [ 8, -1, 13.5 ],
|
||||
"to": [ 8.001, 3.5, 14 ],
|
||||
"faces": {
|
||||
"west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" },
|
||||
"east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX45",
|
||||
"from": [ 8, -5.5, 13 ],
|
||||
"to": [ 8.001, -1, 13.5 ],
|
||||
"faces": {
|
||||
"west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" },
|
||||
"east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX45",
|
||||
"from": [ 8, -10, 12.5 ],
|
||||
"to": [ 8.001, -5.5, 13 ],
|
||||
"faces": {
|
||||
"west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" },
|
||||
"east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "PlaneX45",
|
||||
"from": [ 8, -14.5, 12 ],
|
||||
"to": [ 8.001, -10, 12.5 ],
|
||||
"faces": {
|
||||
"west": { "uv": [ 12.5, 0, 13, 8 ], "texture": "#texture1" },
|
||||
"east": { "uv": [ 3, 0, 3.5, 8 ], "texture": "#texture1" }
|
||||
}
|
||||
}
|
||||
],
|
||||
"display": {
|
||||
"thirdperson_righthand": {
|
||||
"translation": [ 0, -2, 1 ],
|
||||
"scale": [ 0.5, 0.875, 0.75 ]
|
||||
},
|
||||
"thirdperson_lefthand": {
|
||||
"translation": [ 0, -2, 1 ],
|
||||
"scale": [ 0.5, 0.875, 0.75 ]
|
||||
},
|
||||
"firstperson_righthand": {
|
||||
"scale": [ 0.5, 0.875, 0.75 ]
|
||||
},
|
||||
"firstperson_lefthand": {
|
||||
"scale": [ 0.5, 0.875, 0.75 ]
|
||||
},
|
||||
"gui": {
|
||||
"rotation": [ 90, 45, 90 ],
|
||||
"translation": [ -1.25, 1.25, 0 ],
|
||||
"scale": [ 0.45, 0.45, 0.45 ]
|
||||
},
|
||||
"ground": {
|
||||
"rotation": [ 0, 0, 90 ],
|
||||
"translation": [ 0, -1, 0 ],
|
||||
"scale": [ 0.5, 0.875, 0.75 ]
|
||||
},
|
||||
"fixed": {
|
||||
"rotation": [ 90, -45, 90 ],
|
||||
"translation": [ 1.25, 1.25, 0 ],
|
||||
"scale": [ 0.575, 0.575, 0.575 ]
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 680 B |
@@ -2,7 +2,7 @@
|
||||
"modid": "forgecraft",
|
||||
"name": "Kitsu's Forgecraft",
|
||||
"description": "Forged with sweat and blood",
|
||||
"version": "1.6.04",
|
||||
"version": "1.6.05",
|
||||
"mcversion": "1.12.2",
|
||||
"url": "",
|
||||
"updateUrl": "",
|
||||
|
||||
Reference in New Issue
Block a user