Floor tiles, vents and colorless tritanium building blocks;

Storage bus, importer and exporter models (Dbot i made the models, now please make them work with cables)
This commit is contained in:
GearShocky 2022-05-16 01:16:04 +06:00
parent a911eed753
commit 45185db2b1
14 changed files with 432 additions and 0 deletions

View File

@ -131,6 +131,10 @@ object DataGen {
decorativeCubeAll(MBlocks.CRATE_LIST) decorativeCubeAll(MBlocks.CRATE_LIST)
decorativeCubeAll(MBlocks.CARBON_FIBRE_BLOCK) decorativeCubeAll(MBlocks.CARBON_FIBRE_BLOCK)
decorativeCubeAll(MBlocks.TRITANIUM_BLOCK) decorativeCubeAll(MBlocks.TRITANIUM_BLOCK)
decorativeCubeAll(MBlocks.TRITANIUM_BLOCK_COLORLESS)
decorativeCubeAll(MBlocks.VENT)
decorativeCubeAll(MBlocks.VENT_ALTERNATIVE)
decorativeCubeAll(MBlocks.FLOOR_TILES)
for (glass in MBlocks.INDUSTRIAL_GLASS_LIST) { for (glass in MBlocks.INDUSTRIAL_GLASS_LIST) {
decorativeCubeAll(glass) decorativeCubeAll(glass)
@ -236,6 +240,10 @@ object DataGen {
block(MItems.TRITANIUM_RAW_BLOCK) block(MItems.TRITANIUM_RAW_BLOCK)
block(MItems.ITEM_MONITOR) block(MItems.ITEM_MONITOR)
block(MItems.TRITANIUM_BLOCK) block(MItems.TRITANIUM_BLOCK)
block(MItems.TRITANIUM_BLOCK_COLORLESS)
block(MItems.VENT)
block(MItems.VENT_ALTERNATIVE)
block(MItems.FLOOR_TILES)
for (glass in MItems.INDUSTRIAL_GLASS_LIST) { for (glass in MItems.INDUSTRIAL_GLASS_LIST) {
block(glass) block(glass)
@ -388,6 +396,10 @@ object DataGen {
simpleBlock(MBlocks.CARBON_FIBRE_BLOCK) simpleBlock(MBlocks.CARBON_FIBRE_BLOCK)
simpleBlock(MBlocks.TRITANIUM_RAW_BLOCK) simpleBlock(MBlocks.TRITANIUM_RAW_BLOCK)
simpleBlock(MBlocks.TRITANIUM_BLOCK) simpleBlock(MBlocks.TRITANIUM_BLOCK)
simpleBlock(MBlocks.TRITANIUM_BLOCK_COLORLESS)
simpleBlock(MBlocks.VENT)
simpleBlock(MBlocks.VENT_ALTERNATIVE)
simpleBlock(MBlocks.FLOOR_TILES)
simpleBlock(MBlocks.TRITANIUM_STRIPED_BLOCK) simpleBlock(MBlocks.TRITANIUM_STRIPED_BLOCK)
simpleBlock(MBlocks.MATTER_CABLE) simpleBlock(MBlocks.MATTER_CABLE)
simpleBlock(MBlocks.GRAVITATION_STABILIZER) simpleBlock(MBlocks.GRAVITATION_STABILIZER)

View File

@ -97,6 +97,14 @@ object MBlocks {
.strength(4f) .strength(4f)
) } ) }
val TRITANIUM_BLOCK_COLORLESS: Block by registry.register(MNames.TRITANIUM_BLOCK_COLORLESS) { Block(
BlockBehaviour.Properties.of(Material.METAL, DyeColor.WHITE)
.sound(SoundType.BASALT)
.requiresCorrectToolForDrops()
.explosionResistance(80f)
.strength(4f)
) }
val TRITANIUM_STRIPED_BLOCK: Block by registry.register(MNames.TRITANIUM_STRIPED_BLOCK) { Block( val TRITANIUM_STRIPED_BLOCK: Block by registry.register(MNames.TRITANIUM_STRIPED_BLOCK) { Block(
BlockBehaviour.Properties.of(Material.METAL, MaterialColor.COLOR_LIGHT_BLUE) BlockBehaviour.Properties.of(Material.METAL, MaterialColor.COLOR_LIGHT_BLUE)
.sound(SoundType.BASALT) .sound(SoundType.BASALT)
@ -113,6 +121,29 @@ object MBlocks {
.strength(3f) .strength(3f)
) } ) }
val FLOOR_TILES: Block by registry.register(MNames.FLOOR_TILES) { Block(
BlockBehaviour.Properties.of(Material.STONE, MaterialColor.COLOR_LIGHT_GRAY)
.sound(SoundType.STONE)
.requiresCorrectToolForDrops()
.strength(3f)
) }
val VENT: Block by registry.register(MNames.VENT) { Block(
BlockBehaviour.Properties.of(Material.METAL, MaterialColor.COLOR_LIGHT_BLUE)
.sound(SoundType.BASALT)
.requiresCorrectToolForDrops()
.explosionResistance(80f)
.strength(4f)
) }
val VENT_ALTERNATIVE: Block by registry.register(MNames.VENT_ALTERNATIVE) { Block(
BlockBehaviour.Properties.of(Material.METAL, MaterialColor.COLOR_LIGHT_BLUE)
.sound(SoundType.BASALT)
.requiresCorrectToolForDrops()
.explosionResistance(80f)
.strength(4f)
) }
val CARGO_CRATE: Block by registry.register(MNames.CARGO_CRATE) { CargoCrateBlock(null) } val CARGO_CRATE: Block by registry.register(MNames.CARGO_CRATE) { CargoCrateBlock(null) }
val CARGO_CRATE_WHITE: Block by registry.register(MNames.CARGO_CRATE_WHITE) { CargoCrateBlock(DyeColor.WHITE) } val CARGO_CRATE_WHITE: Block by registry.register(MNames.CARGO_CRATE_WHITE) { CargoCrateBlock(DyeColor.WHITE) }
val CARGO_CRATE_ORANGE: Block by registry.register(MNames.CARGO_CRATE_ORANGE) { CargoCrateBlock(DyeColor.ORANGE) } val CARGO_CRATE_ORANGE: Block by registry.register(MNames.CARGO_CRATE_ORANGE) { CargoCrateBlock(DyeColor.ORANGE) }

View File

@ -291,6 +291,10 @@ object MItems {
) )
val TRITANIUM_BLOCK: Item by registry.register(MNames.TRITANIUM_BLOCK) { BlockItem(MBlocks.TRITANIUM_BLOCK, DEFAULT_PROPERTIES) } val TRITANIUM_BLOCK: Item by registry.register(MNames.TRITANIUM_BLOCK) { BlockItem(MBlocks.TRITANIUM_BLOCK, DEFAULT_PROPERTIES) }
val TRITANIUM_BLOCK_COLORLESS: Item by registry.register(MNames.TRITANIUM_BLOCK_COLORLESS) { BlockItem(MBlocks.TRITANIUM_BLOCK_COLORLESS, DEFAULT_PROPERTIES) }
val VENT: Item by registry.register(MNames.VENT) { BlockItem(MBlocks.VENT, DEFAULT_PROPERTIES) }
val VENT_ALTERNATIVE: Item by registry.register(MNames.VENT_ALTERNATIVE) { BlockItem(MBlocks.VENT_ALTERNATIVE, DEFAULT_PROPERTIES) }
val FLOOR_TILES: Item by registry.register(MNames.FLOOR_TILES) { BlockItem(MBlocks.FLOOR_TILES, DEFAULT_PROPERTIES) }
val TRITANIUM_STRIPED_BLOCK: Item by registry.register(MNames.TRITANIUM_STRIPED_BLOCK) { BlockItem(MBlocks.TRITANIUM_STRIPED_BLOCK, DEFAULT_PROPERTIES) } val TRITANIUM_STRIPED_BLOCK: Item by registry.register(MNames.TRITANIUM_STRIPED_BLOCK) { BlockItem(MBlocks.TRITANIUM_STRIPED_BLOCK, DEFAULT_PROPERTIES) }
val CARBON_FIBRE_BLOCK: Item by registry.register(MNames.CARBON_FIBRE_BLOCK) { BlockItem(MBlocks.CARBON_FIBRE_BLOCK, DEFAULT_PROPERTIES) } val CARBON_FIBRE_BLOCK: Item by registry.register(MNames.CARBON_FIBRE_BLOCK) { BlockItem(MBlocks.CARBON_FIBRE_BLOCK, DEFAULT_PROPERTIES) }

View File

@ -58,10 +58,15 @@ object MNames {
// building blocks // building blocks
const val TRITANIUM_BLOCK = "tritanium_block" const val TRITANIUM_BLOCK = "tritanium_block"
const val TRITANIUM_BLOCK_COLORLESS = "tritanium_block_colorless"
const val TRITANIUM_STRIPED_BLOCK = "tritanium_striped_block" const val TRITANIUM_STRIPED_BLOCK = "tritanium_striped_block"
const val CARBON_FIBRE_BLOCK = "carbon_fibre_block" const val CARBON_FIBRE_BLOCK = "carbon_fibre_block"
const val FLOOR_TILES = "floor_tiles"
const val VENT = "vent"
const val VENT_ALTERNATIVE = "vent_alternative"
// capabilities // capabilities
const val ANDROID_CAPABILITY = "android_capability" const val ANDROID_CAPABILITY = "android_capability"
val ANDROID_CAPABILITY_RS = ResourceLocation(OverdriveThatMatters.MOD_ID, ANDROID_CAPABILITY) val ANDROID_CAPABILITY_RS = ResourceLocation(OverdriveThatMatters.MOD_ID, ANDROID_CAPABILITY)

View File

@ -0,0 +1,124 @@
{
"textures": {
"0": "overdrive_that_matters:block/storage_bus",
"particle": "overdrive_that_matters:block/storage_bus"
},
"elements": [
{
"from": [2, 2, 0],
"to": [14, 14, 2],
"faces": {
"north": {"uv": [0, 0, 6, 12], "texture": "#0"},
"east": {"uv": [0, 12, 6, 14], "rotation": 90, "texture": "#0"},
"south": {"uv": [0, 0, 6, 12], "texture": "#0"},
"west": {"uv": [0, 12, 6, 14], "rotation": 270, "texture": "#0"},
"up": {"uv": [0, 12, 6, 14], "texture": "#0"},
"down": {"uv": [0, 12, 6, 14], "rotation": 180, "texture": "#0"}
}
},
{
"from": [4, 4, 2],
"to": [12, 12, 5],
"faces": {
"north": {"uv": [0, 0, 4, 8], "texture": "#missing"},
"east": {"uv": [6, 8, 10, 11], "rotation": 270, "texture": "#0"},
"south": {"uv": [6, 0, 10, 8], "texture": "#0"},
"west": {"uv": [6, 8, 10, 11], "rotation": 90, "texture": "#0"},
"up": {"uv": [6, 8, 10, 11], "rotation": 180, "texture": "#0"},
"down": {"uv": [6, 8, 10, 11], "texture": "#0"}
}
},
{
"from": [5, 5, 4],
"to": [11, 11, 8],
"faces": {
"north": {"uv": [0, 0, 3, 6], "texture": "#missing"},
"east": {"uv": [10, 6, 13, 10], "rotation": 270, "texture": "#0"},
"south": {"uv": [10, 0, 13, 6], "texture": "#0"},
"west": {"uv": [10, 6, 13, 10], "rotation": 90, "texture": "#0"},
"up": {"uv": [10, 6, 13, 10], "rotation": 180, "texture": "#0"},
"down": {"uv": [10, 6, 13, 10], "texture": "#0"}
}
},
{
"from": [7, 11, 2],
"to": [9, 13, 6],
"faces": {
"north": {"uv": [13, 4, 14, 6], "texture": "#0"},
"east": {"uv": [14, 0, 15, 4], "rotation": 90, "texture": "#0"},
"south": {"uv": [13, 4, 14, 6], "texture": "#0"},
"west": {"uv": [14, 0, 15, 4], "rotation": 90, "texture": "#0"},
"up": {"uv": [13, 0, 14, 4], "texture": "#0"},
"down": {"uv": [13, 0, 14, 4], "texture": "#0"}
}
},
{
"from": [7, 3, 2],
"to": [9, 5, 6],
"faces": {
"north": {"uv": [13, 4, 14, 6], "texture": "#0"},
"east": {"uv": [14, 0, 15, 4], "rotation": 90, "texture": "#0"},
"south": {"uv": [13, 4, 14, 6], "texture": "#0"},
"west": {"uv": [14, 0, 15, 4], "rotation": 90, "texture": "#0"},
"up": {"uv": [13, 0, 14, 4], "texture": "#0"},
"down": {"uv": [13, 0, 14, 4], "texture": "#0"}
}
},
{
"from": [3, 7, 2],
"to": [5, 9, 6],
"faces": {
"north": {"uv": [13, 4, 14, 6], "texture": "#0"},
"east": {"uv": [14, 0, 15, 4], "rotation": 90, "texture": "#0"},
"south": {"uv": [13, 4, 14, 6], "texture": "#0"},
"west": {"uv": [14, 0, 15, 4], "rotation": 90, "texture": "#0"},
"up": {"uv": [13, 0, 14, 4], "texture": "#0"},
"down": {"uv": [13, 0, 14, 4], "texture": "#0"}
}
},
{
"from": [11, 7, 2],
"to": [13, 9, 6],
"faces": {
"north": {"uv": [13, 4, 14, 6], "texture": "#0"},
"east": {"uv": [14, 0, 15, 4], "rotation": 90, "texture": "#0"},
"south": {"uv": [13, 4, 14, 6], "texture": "#0"},
"west": {"uv": [14, 0, 15, 4], "rotation": 90, "texture": "#0"},
"up": {"uv": [13, 0, 14, 4], "texture": "#0"},
"down": {"uv": [13, 0, 14, 4], "texture": "#0"}
}
}
],
"display": {
"thirdperson_righthand": {
"rotation": [75, 45, 0],
"translation": [0, 2.5, 0],
"scale": [0.375, 0.375, 0.375]
},
"thirdperson_lefthand": {
"rotation": [75, 45, 0],
"translation": [0, 2.5, 0],
"scale": [0.375, 0.375, 0.375]
},
"firstperson_righthand": {
"rotation": [0, 45, 0],
"scale": [0.4, 0.4, 0.4]
},
"firstperson_lefthand": {
"rotation": [0, 225, 0],
"scale": [0.4, 0.4, 0.4]
},
"ground": {
"translation": [0, 3, 0],
"scale": [0.25, 0.25, 0.25]
},
"gui": {
"rotation": [30, 225, 0],
"translation": [-1.5, 1.5, 0],
"scale": [0.625, 0.625, 0.625]
},
"fixed": {
"scale": [0.5, 0.5, 0.5]
}
}
}

View File

@ -0,0 +1,128 @@
{
"textures": {
"2": "overdrive_that_matters:block/storage_exporter",
"particle": "overdrive_that_matters:block/storage_exporter"
},
"elements": [
{
"from": [3, 3, 0],
"to": [13, 13, 2],
"faces": {
"north": {"uv": [0.5, 1, 5.5, 11], "texture": "#2"},
"east": {"uv": [0, 12, 5, 14], "rotation": 90, "texture": "#2"},
"south": {"uv": [0.5, 1, 5.5, 11], "texture": "#2"},
"west": {"uv": [0, 12, 5, 14], "rotation": 270, "texture": "#2"},
"up": {"uv": [0, 12, 5, 14], "texture": "#2"},
"down": {"uv": [0, 12, 5, 14], "rotation": 180, "texture": "#2"}
}
},
{
"from": [4, 4, 2],
"to": [12, 12, 5],
"faces": {
"north": {"uv": [0, 0, 4, 8], "texture": "#2"},
"east": {"uv": [6, 8, 10, 11], "rotation": 270, "texture": "#2"},
"south": {"uv": [6, 0, 10, 8], "texture": "#2"},
"west": {"uv": [6, 8, 10, 11], "rotation": 90, "texture": "#2"},
"up": {"uv": [6, 8, 10, 11], "rotation": 180, "texture": "#2"},
"down": {"uv": [6, 8, 10, 11], "texture": "#2"}
}
},
{
"from": [5, 5, 4],
"to": [11, 11, 8],
"faces": {
"north": {"uv": [0, 0, 3, 6], "texture": "#2"},
"east": {"uv": [10, 6, 13, 10], "rotation": 270, "texture": "#2"},
"south": {"uv": [10, 0, 13, 6], "texture": "#2"},
"west": {"uv": [10, 6, 13, 10], "rotation": 90, "texture": "#2"},
"up": {"uv": [10, 6, 13, 10], "rotation": 180, "texture": "#2"},
"down": {"uv": [10, 6, 13, 10], "texture": "#2"}
}
},
{
"from": [7, 12, 3],
"to": [9, 14, 7],
"rotation": {"angle": -45, "axis": "x", "origin": [8, 12, 5]},
"faces": {
"north": {"uv": [13, 4, 14, 6], "rotation": 180, "texture": "#2"},
"east": {"uv": [14, 0, 15, 4], "rotation": 270, "texture": "#2"},
"south": {"uv": [13, 4, 14, 6], "rotation": 180, "texture": "#2"},
"west": {"uv": [14, 0, 15, 4], "rotation": 270, "texture": "#2"},
"up": {"uv": [13, 0, 14, 4], "texture": "#2"},
"down": {"uv": [13, 0, 14, 4], "texture": "#2"}
}
},
{
"from": [7, 2, 3],
"to": [9, 6, 5],
"rotation": {"angle": -45, "axis": "x", "origin": [8, 4, 5]},
"faces": {
"north": {"uv": [13, 0, 14, 4], "rotation": 180, "texture": "#2"},
"east": {"uv": [14, 0, 15, 4], "rotation": 180, "texture": "#2"},
"south": {"uv": [13, 0, 14, 4], "texture": "#2"},
"west": {"uv": [14, 0, 15, 4], "texture": "#2"},
"up": {"uv": [13, 4, 14, 6], "texture": "#2"},
"down": {"uv": [13, 4, 14, 6], "rotation": 180, "texture": "#2"}
}
},
{
"from": [2, 7, 3],
"to": [4, 9, 7],
"rotation": {"angle": -45, "axis": "y", "origin": [4, 8, 5]},
"faces": {
"north": {"uv": [13, 4, 14, 6], "texture": "#2"},
"east": {"uv": [14, 0, 15, 4], "rotation": 90, "texture": "#2"},
"south": {"uv": [13, 4, 14, 6], "texture": "#2"},
"west": {"uv": [14, 0, 15, 4], "rotation": 90, "texture": "#2"},
"up": {"uv": [13, 0, 14, 4], "rotation": 180, "texture": "#2"},
"down": {"uv": [13, 0, 14, 4], "rotation": 180, "texture": "#2"}
}
},
{
"from": [12, 7, 3],
"to": [14, 9, 7],
"rotation": {"angle": 45, "axis": "y", "origin": [12, 8, 5]},
"faces": {
"north": {"uv": [13, 4, 14, 6], "texture": "#2"},
"east": {"uv": [14, 0, 15, 4], "rotation": 90, "texture": "#2"},
"south": {"uv": [13, 4, 14, 6], "texture": "#2"},
"west": {"uv": [14, 0, 15, 4], "rotation": 90, "texture": "#2"},
"up": {"uv": [13, 0, 14, 4], "rotation": 180, "texture": "#2"},
"down": {"uv": [13, 0, 14, 4], "rotation": 180, "texture": "#2"}
}
}
],
"display": {
"thirdperson_righthand": {
"rotation": [75, 45, 0],
"translation": [0, 2.5, 0],
"scale": [0.375, 0.375, 0.375]
},
"thirdperson_lefthand": {
"rotation": [75, 45, 0],
"translation": [0, 2.5, 0],
"scale": [0.375, 0.375, 0.375]
},
"firstperson_righthand": {
"rotation": [0, 45, 0],
"scale": [0.4, 0.4, 0.4]
},
"firstperson_lefthand": {
"rotation": [0, 225, 0],
"scale": [0.4, 0.4, 0.4]
},
"ground": {
"translation": [0, 3, 0],
"scale": [0.25, 0.25, 0.25]
},
"gui": {
"rotation": [30, 225, 0],
"translation": [-1.5, 1.5, 0],
"scale": [0.625, 0.625, 0.625]
},
"fixed": {
"scale": [0.5, 0.5, 0.5]
}
}
}

View File

@ -0,0 +1,128 @@
{
"textures": {
"1": "overdrive_that_matters:block/storage_importer",
"particle": "overdrive_that_matters:block/storage_importer"
},
"elements": [
{
"from": [2, 2, 0],
"to": [14, 14, 2],
"faces": {
"north": {"uv": [0, 0, 6, 12], "texture": "#1"},
"east": {"uv": [0, 12, 6, 14], "rotation": 90, "texture": "#1"},
"south": {"uv": [0, 0, 6, 12], "texture": "#1"},
"west": {"uv": [0, 12, 6, 14], "rotation": 270, "texture": "#1"},
"up": {"uv": [0, 12, 6, 14], "texture": "#1"},
"down": {"uv": [0, 12, 6, 14], "rotation": 180, "texture": "#1"}
}
},
{
"from": [4, 4, 2],
"to": [12, 12, 5],
"faces": {
"north": {"uv": [0, 0, 4, 8], "texture": "#1"},
"east": {"uv": [6, 8, 10, 11], "rotation": 270, "texture": "#1"},
"south": {"uv": [6, 0, 10, 8], "texture": "#1"},
"west": {"uv": [6, 8, 10, 11], "rotation": 90, "texture": "#1"},
"up": {"uv": [6, 8, 10, 11], "rotation": 180, "texture": "#1"},
"down": {"uv": [6, 8, 10, 11], "texture": "#1"}
}
},
{
"from": [5, 5, 4],
"to": [11, 11, 8],
"faces": {
"north": {"uv": [0, 0, 3, 6], "texture": "#1"},
"east": {"uv": [10, 6, 13, 10], "rotation": 270, "texture": "#1"},
"south": {"uv": [10, 0, 13, 6], "texture": "#1"},
"west": {"uv": [10, 6, 13, 10], "rotation": 90, "texture": "#1"},
"up": {"uv": [10, 6, 13, 10], "rotation": 180, "texture": "#1"},
"down": {"uv": [10, 6, 13, 10], "texture": "#1"}
}
},
{
"from": [7, 11, 2],
"to": [9, 13, 6],
"rotation": {"angle": 22.5, "axis": "x", "origin": [8, 12, 5]},
"faces": {
"north": {"uv": [13, 4, 14, 6], "texture": "#1"},
"east": {"uv": [14, 0, 15, 4], "rotation": 90, "texture": "#1"},
"south": {"uv": [13, 4, 14, 6], "texture": "#1"},
"west": {"uv": [14, 0, 15, 4], "rotation": 90, "texture": "#1"},
"up": {"uv": [13, 0, 14, 4], "texture": "#1"},
"down": {"uv": [13, 0, 14, 4], "texture": "#1"}
}
},
{
"from": [7, 3, 2],
"to": [9, 5, 6],
"rotation": {"angle": -22.5, "axis": "x", "origin": [8, 4, 5]},
"faces": {
"north": {"uv": [13, 4, 14, 6], "texture": "#1"},
"east": {"uv": [14, 0, 15, 4], "rotation": 90, "texture": "#1"},
"south": {"uv": [13, 4, 14, 6], "texture": "#1"},
"west": {"uv": [14, 0, 15, 4], "rotation": 90, "texture": "#1"},
"up": {"uv": [13, 0, 14, 4], "texture": "#1"},
"down": {"uv": [13, 0, 14, 4], "texture": "#1"}
}
},
{
"from": [3, 7, 2],
"to": [5, 9, 6],
"rotation": {"angle": 22.5, "axis": "y", "origin": [4, 8, 5]},
"faces": {
"north": {"uv": [13, 4, 14, 6], "texture": "#1"},
"east": {"uv": [14, 0, 15, 4], "rotation": 90, "texture": "#1"},
"south": {"uv": [13, 4, 14, 6], "texture": "#1"},
"west": {"uv": [14, 0, 15, 4], "rotation": 90, "texture": "#1"},
"up": {"uv": [13, 0, 14, 4], "texture": "#1"},
"down": {"uv": [13, 0, 14, 4], "texture": "#1"}
}
},
{
"from": [11, 7, 2],
"to": [13, 9, 6],
"rotation": {"angle": -22.5, "axis": "y", "origin": [12, 8, 5]},
"faces": {
"north": {"uv": [13, 4, 14, 6], "texture": "#1"},
"east": {"uv": [14, 0, 15, 4], "rotation": 90, "texture": "#1"},
"south": {"uv": [13, 4, 14, 6], "texture": "#1"},
"west": {"uv": [14, 0, 15, 4], "rotation": 90, "texture": "#1"},
"up": {"uv": [13, 0, 14, 4], "texture": "#1"},
"down": {"uv": [13, 0, 14, 4], "texture": "#1"}
}
}
],
"display": {
"thirdperson_righthand": {
"rotation": [75, 45, 0],
"translation": [0, 2.5, 0],
"scale": [0.375, 0.375, 0.375]
},
"thirdperson_lefthand": {
"rotation": [75, 45, 0],
"translation": [0, 2.5, 0],
"scale": [0.375, 0.375, 0.375]
},
"firstperson_righthand": {
"rotation": [0, 45, 0],
"scale": [0.4, 0.4, 0.4]
},
"firstperson_lefthand": {
"rotation": [0, 225, 0],
"scale": [0.4, 0.4, 0.4]
},
"ground": {
"translation": [0, 3, 0],
"scale": [0.25, 0.25, 0.25]
},
"gui": {
"rotation": [30, 225, 0],
"translation": [-1.5, 1.5, 0],
"scale": [0.625, 0.625, 0.625]
},
"fixed": {
"scale": [0.5, 0.5, 0.5]
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 400 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 413 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 573 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 517 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 237 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 B