终于把第三人称调完了(恼

This commit is contained in:
Atsuishio 2025-06-08 15:08:00 +08:00 committed by Light_Quanta
parent c3ec95d054
commit 0c43f29918
No known key found for this signature in database
GPG key ID: 11A39A1B8C890959
28 changed files with 2108 additions and 5010 deletions

View file

@ -31,6 +31,16 @@ public class RpgItemModel extends CustomGunModel<RpgItem> {
return Mod.loc("textures/item/rpg.png");
}
@Override
public ResourceLocation getLODModelResource(RpgItem animatable) {
return Mod.loc("geo/lod/rpg.geo.json");
}
@Override
public ResourceLocation getLODTextureResource(RpgItem animatable) {
return Mod.loc("textures/item/lod/rpg.png");
}
@Override
public void setCustomAnimations(RpgItem animatable, long instanceId, AnimationState<RpgItem> animationState) {
Player player = Minecraft.getInstance().player;

View file

@ -30,6 +30,16 @@ public class SecondaryCataclysmModel extends CustomGunModel<SecondaryCataclysm>
return Mod.loc("textures/item/secondary_cataclysm.png");
}
@Override
public ResourceLocation getLODModelResource(SecondaryCataclysm animatable) {
return Mod.loc("geo/lod/secondary_cataclysm.geo.json");
}
@Override
public ResourceLocation getLODTextureResource(SecondaryCataclysm animatable) {
return Mod.loc("textures/item/lod/secondary_cataclysm.png");
}
@Override
public void setCustomAnimations(SecondaryCataclysm animatable, long instanceId, AnimationState<SecondaryCataclysm> animationState) {
Player player = Minecraft.getInstance().player;

View file

@ -30,6 +30,16 @@ public class SentinelItemModel extends CustomGunModel<SentinelItem> {
return Mod.loc("textures/item/sentinel.png");
}
@Override
public ResourceLocation getLODModelResource(SentinelItem animatable) {
return Mod.loc("geo/lod/sentinel.geo.json");
}
@Override
public ResourceLocation getLODTextureResource(SentinelItem animatable) {
return Mod.loc("textures/item/lod/sentinel.png");
}
@Override
public void setCustomAnimations(SentinelItem animatable, long instanceId, AnimationState<SentinelItem> animationState) {
Player player = Minecraft.getInstance().player;

View file

@ -10,6 +10,7 @@ import com.mojang.blaze3d.vertex.VertexConsumer;
import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.MultiBufferSource;
import net.minecraft.client.renderer.RenderType;
import net.minecraft.world.item.ItemDisplayContext;
import net.minecraft.world.item.ItemStack;
import software.bernie.geckolib.animatable.GeoItem;
import software.bernie.geckolib.cache.object.GeoBone;
@ -35,9 +36,12 @@ public class RpgItemRenderer extends CustomGunRenderer<RpgItem> {
var player = mc.player;
if (player == null) return;
ItemStack itemStack = player.getMainHandItem();
if (itemStack.getItem() instanceof GunItem && GeoItem.getId(itemStack) == this.getInstanceId(animatable)) {
if (this.renderPerspective == ItemDisplayContext.FIRST_PERSON_RIGHT_HAND || this.renderPerspective == ItemDisplayContext.THIRD_PERSON_RIGHT_HAND) {
AnimationHelper.handleShootFlare(name, stack, itemStack, bone, buffer, packedLightIn, 0, 0, 0.625, 0.7);
}
}
if (renderingArms) {
AnimationHelper.renderArms(player, this.renderPerspective, stack, name, bone, buffer, type, packedLightIn, false);

View file

@ -10,6 +10,7 @@ import com.mojang.blaze3d.vertex.VertexConsumer;
import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.MultiBufferSource;
import net.minecraft.client.renderer.RenderType;
import net.minecraft.world.item.ItemDisplayContext;
import net.minecraft.world.item.ItemStack;
import software.bernie.geckolib.animatable.GeoItem;
import software.bernie.geckolib.cache.object.GeoBone;
@ -35,9 +36,12 @@ public class SecondaryCataclysmRenderer extends CustomGunRenderer<SecondaryCatac
var player = mc.player;
if (player == null) return;
ItemStack itemStack = player.getMainHandItem();
if (itemStack.getItem() instanceof GunItem && GeoItem.getId(itemStack) == this.getInstanceId(animatable)) {
if (this.renderPerspective == ItemDisplayContext.FIRST_PERSON_RIGHT_HAND || this.renderPerspective == ItemDisplayContext.THIRD_PERSON_RIGHT_HAND) {
AnimationHelper.handleShootFlare(name, stack, itemStack, bone, buffer, packedLightIn, 0, 0, 1.0375, 0.6);
}
}
if (renderingArms) {
AnimationHelper.renderArms(player, this.renderPerspective, stack, name, bone, buffer, type, packedLightIn, false);

View file

@ -1,6 +1,7 @@
package com.atsuishio.superbwarfare.client.renderer.gun;
import com.atsuishio.superbwarfare.client.AnimationHelper;
import com.atsuishio.superbwarfare.client.ItemModelHelper;
import com.atsuishio.superbwarfare.client.model.item.SentinelItemModel;
import com.atsuishio.superbwarfare.client.renderer.CustomGunRenderer;
import com.atsuishio.superbwarfare.item.gun.GunItem;
@ -37,26 +38,43 @@ public class SentinelItemRenderer extends CustomGunRenderer<SentinelItem> {
var player = mc.player;
if (player == null) return;
ItemStack itemStack = player.getMainHandItem();
boolean needHide = name.equals("wires") || name.equals("charge_illuminated");
if (itemStack.getItem() instanceof GunItem && GeoItem.getId(itemStack) == this.getInstanceId(animatable)) {
if (this.renderPerspective != ItemDisplayContext.FIRST_PERSON_RIGHT_HAND) {
if (name.equals("wires")) {
bone.setHidden(true);
}
}
if (this.renderPerspective == ItemDisplayContext.FIRST_PERSON_RIGHT_HAND || this.renderPerspective == ItemDisplayContext.THIRD_PERSON_RIGHT_HAND) {
var cap = itemStack.getCapability(Capabilities.EnergyStorage.ITEM);
var flag = cap != null && cap.getEnergyStored() > 0;
if (name.equals("charge_illuminated")) {
bone.setHidden(!flag);
bone.setRotZ((System.currentTimeMillis() % 36000000) / 200f);
}
AnimationHelper.handleZoomCrossHair(currentBuffer, renderType, name, stack, bone, buffer, 0, 0.265, -0.05, 0.075f, 255, 0, 0, 255, "apex_3x", false);
ItemModelHelper.handleGunAttachments(bone, itemStack, name);
AnimationHelper.handleShootFlare(name, stack, itemStack, bone, buffer, packedLightIn, 0, 0, 1.53125, 0.6);
} else if (name.equals("charge_illuminated") || name.equals("wires")) {
if (this.renderPerspective == ItemDisplayContext.FIRST_PERSON_RIGHT_HAND) {
AnimationHelper.handleZoomCrossHair(currentBuffer, renderType, name, stack, bone, buffer, 0, 0.265, -0.05, 0.075f, 255, 0, 0, 255, "apex_3x", false);
} else {
if (name.equals("wires")) {
bone.setHidden(true);
}
}
} else {
ItemModelHelper.hideAllAttachments(bone, name);
if (needHide) {
bone.setHidden(true);
}
}
} else {
ItemModelHelper.hideAllAttachments(bone, name);
if (needHide) {
bone.setHidden(true);
}
}
if (renderingArms) {
AnimationHelper.renderArms(player, this.renderPerspective, stack, name, bone, buffer, type, packedLightIn, true);

View file

@ -6,6 +6,7 @@ import com.atsuishio.superbwarfare.config.server.VehicleConfig;
import com.atsuishio.superbwarfare.entity.vehicle.base.*;
import com.atsuishio.superbwarfare.entity.vehicle.damage.DamageModifier;
import com.atsuishio.superbwarfare.entity.vehicle.weapon.*;
import com.atsuishio.superbwarfare.event.ClientEventHandler;
import com.atsuishio.superbwarfare.event.ClientMouseHandler;
import com.atsuishio.superbwarfare.init.ModDamageTypes;
import com.atsuishio.superbwarfare.init.ModItems;
@ -1017,7 +1018,7 @@ public class A10Entity extends ContainerMobileVehicleEntity implements GeoEntity
@Override
public double getMouseSensitivity() {
return 0.07;
return ClientEventHandler.zoomVehicle ? 0.03 : 0.07;
}
@Override

View file

@ -0,0 +1,181 @@
{
"format_version": "1.12.0",
"minecraft:geometry": [
{
"description": {
"identifier": "geometry.rpg",
"texture_width": 32,
"texture_height": 32,
"visible_bounds_width": 6,
"visible_bounds_height": 2.5,
"visible_bounds_offset": [0, 0.75, 0]
},
"bones": [
{
"name": "group2",
"pivot": [0.14583, 0.97708, -2.17708],
"cubes": [
{
"origin": [-1.16133, 0.20467, -0.26387],
"size": [2.2816, 2.2816, 19.4044],
"pivot": [-0.02053, 1.34547, 2.44823],
"rotation": [0, 0, 45],
"uv": {
"north": {"uv": [15, 1], "uv_size": [2, 2]},
"east": {"uv": [0, 0], "uv_size": [12, 2]},
"south": {"uv": [14, 15], "uv_size": [2, 2]},
"west": {"uv": [0, 2], "uv_size": [12, 2]},
"up": {"uv": [0, 4], "uv_size": [2, 12]},
"down": {"uv": [2, 16], "uv_size": [2, -12]}
}
},
{
"origin": [-0.87613, 0.48987, 19.14053],
"size": [1.7112, 1.7112, 9.3948],
"pivot": [-0.02053, 1.34547, 26.38433],
"rotation": [0, 0, 45],
"uv": {
"north": {"uv": [17, 18], "uv_size": [2, 1]},
"east": {"uv": [12, 14], "uv_size": [6, 1]},
"south": {"uv": [18, 17], "uv_size": [2, 1]},
"west": {"uv": [15, 0], "uv_size": [6, 1]},
"up": {"uv": [6, 6], "uv_size": [2, 6]},
"down": {"uv": [8, 12], "uv_size": [2, -6]}
}
},
{
"origin": [-0.75635, 0.60965, -10.06049],
"size": [1.47163, 1.47163, 11.03724],
"pivot": [-0.02053, 1.34547, 2.44823],
"rotation": [0, 0, 45],
"uv": {
"north": {"uv": [16, 9], "uv_size": [1, 1]},
"east": {"uv": [12, 3], "uv_size": [8, 1]},
"south": {"uv": [19, 6], "uv_size": [1, 1]},
"west": {"uv": [12, 13], "uv_size": [8, 1]},
"up": {"uv": [8, 12], "uv_size": [1, 8]},
"down": {"uv": [9, 20], "uv_size": [1, -8]}
}
},
{
"origin": [0.54987, 1.34547, -7.10867],
"size": [0.8556, 2.852, 0.2852],
"uv": {
"north": {"uv": [16, 6], "uv_size": [1, 3]},
"east": {"uv": [10, 16], "uv_size": [1, 3]},
"south": {"uv": [11, 16], "uv_size": [1, 3]},
"west": {"uv": [16, 15], "uv_size": [1, 3]},
"up": {"uv": [19, 7], "uv_size": [1, 1]},
"down": {"uv": [19, 9], "uv_size": [1, -1]}
}
},
{
"origin": [0.54987, 1.34547, 2.58813],
"size": [0.8556, 2.852, 0.2852],
"uv": {
"north": {"uv": [17, 6], "uv_size": [1, 3]},
"east": {"uv": [17, 9], "uv_size": [1, 3]},
"south": {"uv": [14, 17], "uv_size": [1, 3]},
"west": {"uv": [15, 17], "uv_size": [1, 3]},
"up": {"uv": [10, 19], "uv_size": [1, 1]},
"down": {"uv": [11, 20], "uv_size": [1, -1]}
}
},
{
"origin": [-0.59093, 0.77507, -38.14667],
"size": [1.1408, 1.1408, 29.3268],
"pivot": [-0.02053, 1.34547, -23.48327],
"rotation": [0, 0, 45],
"uv": {
"north": {"uv": [19, 14], "uv_size": [1, 1]},
"east": {"uv": [4, 4], "uv_size": [15, 1]},
"south": {"uv": [19, 15], "uv_size": [1, 1]},
"west": {"uv": [4, 5], "uv_size": [15, 1]},
"up": {"uv": [4, 6], "uv_size": [1, 15]},
"down": {"uv": [5, 21], "uv_size": [1, -15]}
}
},
{
"origin": [-1.9713, -0.6053, -25.09968],
"size": [3.90154, 3.90154, 10.72922],
"pivot": [-0.02053, 1.34547, -26.81767],
"rotation": [0, 0, 45],
"uv": {
"north": {"uv": [0, 16], "uv_size": [2, 2]},
"east": {"uv": [10, 6], "uv_size": [6, 2]},
"south": {"uv": [2, 16], "uv_size": [2, 2]},
"west": {"uv": [10, 8], "uv_size": [6, 2]},
"up": {"uv": [10, 10], "uv_size": [2, 6]},
"down": {"uv": [6, 18], "uv_size": [2, -6]}
}
},
{
"origin": [-1.04725, 0.31875, -36.86147],
"size": [2.05344, 2.05344, 5.9224],
"pivot": [-0.02053, 1.34547, -26.81767],
"rotation": [0, 0, 45],
"uv": {
"north": {"uv": [19, 4], "uv_size": [2, 1]},
"east": {"uv": [17, 1], "uv_size": [3, 1]},
"south": {"uv": [19, 5], "uv_size": [2, 1]},
"west": {"uv": [17, 2], "uv_size": [3, 1]},
"up": {"uv": [15, 10], "uv_size": [2, 3]},
"down": {"uv": [12, 18], "uv_size": [2, -3]}
}
},
{
"origin": [-0.59093, -3.14733, 2.33813],
"size": [1.1408, 3.352, 1.1408],
"uv": {
"north": {"uv": [17, 15], "uv_size": [1, 3]},
"east": {"uv": [0, 18], "uv_size": [1, 3]},
"south": {"uv": [1, 18], "uv_size": [1, 3]},
"west": {"uv": [2, 18], "uv_size": [1, 3]},
"up": {"uv": [19, 16], "uv_size": [1, 1]},
"down": {"uv": [17, 20], "uv_size": [1, -1]}
}
},
{
"origin": [-0.59093, -3.50293, -3.68627],
"size": [1.1408, 3.352, 1.1408],
"uv": {
"north": {"uv": [3, 18], "uv_size": [1, 3]},
"east": {"uv": [6, 18], "uv_size": [1, 3]},
"south": {"uv": [18, 6], "uv_size": [1, 3]},
"west": {"uv": [7, 18], "uv_size": [1, 3]},
"up": {"uv": [18, 19], "uv_size": [1, 1]},
"down": {"uv": [19, 19], "uv_size": [1, -1]}
}
},
{
"origin": [-0.59093, -0.15093, -5.04747],
"size": [1.1408, 0.926, 4.0372],
"uv": {
"north": {"uv": [19, 19], "uv_size": [1, 1]},
"east": {"uv": [17, 12], "uv_size": [3, 1]},
"south": {"uv": [20, 1], "uv_size": [1, 1]},
"west": {"uv": [18, 9], "uv_size": [3, 1]},
"up": {"uv": [12, 18], "uv_size": [1, 3]},
"down": {"uv": [13, 21], "uv_size": [1, -3]}
}
},
{
"origin": [-2.29643, -0.93043, 28.5471],
"size": [4.55179, 4.55179, 0.76726],
"pivot": [-0.02053, 1.34547, 26.38433],
"rotation": [0, 0, 45],
"uv": {
"north": {"uv": [12, 0], "uv_size": [3, 3]},
"east": {"uv": [18, 14], "uv_size": [1, 3]},
"south": {"uv": [12, 10], "uv_size": [3, 3]},
"west": {"uv": [16, 18], "uv_size": [1, 3]},
"up": {"uv": [18, 10], "uv_size": [3, 1]},
"down": {"uv": [18, 12], "uv_size": [3, -1]}
}
}
]
}
]
}
]
}

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,207 @@
{
"format_version": "1.12.0",
"minecraft:geometry": [
{
"description": {
"identifier": "geometry.sentinel",
"texture_width": 64,
"texture_height": 64,
"visible_bounds_width": 4,
"visible_bounds_height": 1.5,
"visible_bounds_offset": [0, 0.25, 0]
},
"bones": [
{
"name": "group",
"pivot": [0.125, 2.85, -3.3],
"cubes": [
{
"origin": [-0.375, 0.85, -24.3],
"size": [0.75, 1, 12],
"uv": {
"north": {"uv": [26, 10], "uv_size": [1, 1]},
"east": {"uv": [22, 13], "uv_size": [12, 1]},
"south": {"uv": [15, 27], "uv_size": [1, 1]},
"west": {"uv": [22, 14], "uv_size": [12, 1]},
"up": {"uv": [22, 15], "uv_size": [1, 12]},
"down": {"uv": [23, 27], "uv_size": [1, -12]}
}
},
{
"origin": [-2.625, 1.35, 9.95],
"size": [1.75, 1, 1],
"uv": {
"north": {"uv": [20, 11], "uv_size": [2, 1]},
"east": {"uv": [26, 30], "uv_size": [1, 1]},
"south": {"uv": [30, 8], "uv_size": [2, 1]},
"west": {"uv": [30, 26], "uv_size": [1, 1]},
"up": {"uv": [30, 10], "uv_size": [2, 1]},
"down": {"uv": [30, 12], "uv_size": [2, -1]}
}
},
{
"origin": [-0.875, 0.35, -15.8],
"size": [1.75, 2, 34.25],
"uv": {
"north": {"uv": [18, 10], "uv_size": [2, 2]},
"east": {"uv": [0, 0], "uv_size": [34, 2]},
"south": {"uv": [28, 15], "uv_size": [2, 2]},
"west": {"uv": [0, 2], "uv_size": [34, 2]},
"up": {"uv": [0, 4], "uv_size": [2, 34]},
"down": {"uv": [2, 38], "uv_size": [2, -34]}
}
},
{
"origin": [-1.075, 1.6, 12.95],
"size": [2.15, 1, 4.25],
"uv": {
"north": {"uv": [30, 15], "uv_size": [2, 1]},
"east": {"uv": [17, 28], "uv_size": [4, 1]},
"south": {"uv": [30, 16], "uv_size": [2, 1]},
"west": {"uv": [28, 17], "uv_size": [4, 1]},
"up": {"uv": [4, 26], "uv_size": [2, 4]},
"down": {"uv": [6, 30], "uv_size": [2, -4]}
}
},
{
"origin": [-0.875, 2.35, -4.05],
"size": [1.75, 0.5, 14],
"uv": {
"north": {"uv": [30, 18], "uv_size": [2, 1]},
"east": {"uv": [15, 4], "uv_size": [14, 1]},
"south": {"uv": [30, 19], "uv_size": [2, 1]},
"west": {"uv": [15, 5], "uv_size": [14, 1]},
"up": {"uv": [4, 12], "uv_size": [2, 14]},
"down": {"uv": [6, 26], "uv_size": [2, -14]}
}
},
{
"origin": [-1.125, 2.85, 1.7],
"size": [2.25, 2, 4.5],
"uv": {
"north": {"uv": [28, 18], "uv_size": [2, 2]},
"east": {"uv": [15, 6], "uv_size": [5, 2]},
"south": {"uv": [28, 20], "uv_size": [2, 2]},
"west": {"uv": [15, 8], "uv_size": [5, 2]},
"up": {"uv": [20, 6], "uv_size": [2, 5]},
"down": {"uv": [16, 28], "uv_size": [2, -5]}
}
},
{
"origin": [-0.875, -3.15, 7.45],
"size": [1.75, 3.5, 11],
"uv": {
"north": {"uv": [26, 6], "uv_size": [2, 4]},
"east": {"uv": [4, 4], "uv_size": [11, 4]},
"south": {"uv": [26, 15], "uv_size": [2, 4]},
"west": {"uv": [4, 8], "uv_size": [11, 4]},
"up": {"uv": [12, 16], "uv_size": [2, 11]},
"down": {"uv": [14, 27], "uv_size": [2, -11]}
}
},
{
"origin": [-0.625, -4.65, 10.95],
"size": [1.25, 1.5, 2.75],
"uv": {
"north": {"uv": [11, 30], "uv_size": [1, 2]},
"east": {"uv": [15, 10], "uv_size": [3, 2]},
"south": {"uv": [30, 20], "uv_size": [1, 2]},
"west": {"uv": [24, 11], "uv_size": [3, 2]},
"up": {"uv": [21, 28], "uv_size": [1, 3]},
"down": {"uv": [14, 32], "uv_size": [1, -3]}
}
},
{
"origin": [-1.125, -4.15, 18.45],
"size": [2.25, 6.75, 2.25],
"uv": {
"north": {"uv": [16, 16], "uv_size": [2, 7]},
"east": {"uv": [18, 16], "uv_size": [2, 7]},
"south": {"uv": [20, 16], "uv_size": [2, 7]},
"west": {"uv": [22, 6], "uv_size": [2, 7]},
"up": {"uv": [28, 22], "uv_size": [2, 2]},
"down": {"uv": [28, 26], "uv_size": [2, -2]}
}
},
{
"origin": [-0.875, -3.55, 13.7],
"size": [1.75, 0.4, 4.75],
"uv": {
"north": {"uv": [22, 30], "uv_size": [2, 1]},
"east": {"uv": [27, 12], "uv_size": [5, 1]},
"south": {"uv": [30, 22], "uv_size": [2, 1]},
"west": {"uv": [28, 9], "uv_size": [5, 1]},
"up": {"uv": [18, 23], "uv_size": [2, 5]},
"down": {"uv": [20, 28], "uv_size": [2, -5]}
}
},
{
"origin": [-0.875, -1.15, -10.8],
"size": [1.75, 1.5, 14],
"uv": {
"north": {"uv": [28, 26], "uv_size": [2, 2]},
"east": {"uv": [8, 12], "uv_size": [14, 2]},
"south": {"uv": [28, 28], "uv_size": [2, 2]},
"west": {"uv": [8, 14], "uv_size": [14, 2]},
"up": {"uv": [8, 16], "uv_size": [2, 14]},
"down": {"uv": [10, 30], "uv_size": [2, -14]}
}
},
{
"origin": [-0.875, -4.35641, 3.67051],
"size": [1.75, 4.8, 1.5],
"pivot": [0, -4.55641, 4.42051],
"rotation": [22.5, 0, 0],
"uv": {
"north": {"uv": [24, 6], "uv_size": [2, 5]},
"east": {"uv": [24, 15], "uv_size": [2, 5]},
"south": {"uv": [24, 20], "uv_size": [2, 5]},
"west": {"uv": [24, 25], "uv_size": [2, 5]},
"up": {"uv": [29, 4], "uv_size": [2, 2]},
"down": {"uv": [12, 31], "uv_size": [2, -2]}
}
},
{
"origin": [-0.875, -4.35641, 5.17051],
"size": [1.75, 1.55, 3.25],
"pivot": [0, -4.55641, 4.42051],
"rotation": [22.5, 0, 0],
"uv": {
"north": {"uv": [17, 29], "uv_size": [2, 2]},
"east": {"uv": [27, 10], "uv_size": [3, 2]},
"south": {"uv": [19, 29], "uv_size": [2, 2]},
"west": {"uv": [12, 27], "uv_size": [3, 2]},
"up": {"uv": [22, 27], "uv_size": [2, 3]},
"down": {"uv": [26, 30], "uv_size": [2, -3]}
}
},
{
"origin": [-0.875, -2.15, -0.8],
"size": [1.75, 1, 4],
"uv": {
"north": {"uv": [30, 23], "uv_size": [2, 1]},
"east": {"uv": [4, 30], "uv_size": [4, 1]},
"south": {"uv": [24, 30], "uv_size": [2, 1]},
"west": {"uv": [30, 6], "uv_size": [4, 1]},
"up": {"uv": [26, 19], "uv_size": [2, 4]},
"down": {"uv": [26, 27], "uv_size": [2, -4]}
}
},
{
"origin": [-0.875, 0.8, -27.3],
"size": [1.75, 1.1, 3],
"uv": {
"north": {"uv": [30, 24], "uv_size": [2, 1]},
"east": {"uv": [30, 7], "uv_size": [3, 1]},
"south": {"uv": [30, 25], "uv_size": [2, 1]},
"west": {"uv": [8, 30], "uv_size": [3, 1]},
"up": {"uv": [28, 6], "uv_size": [2, 3]},
"down": {"uv": [15, 31], "uv_size": [2, -3]}
}
}
]
}
]
}
]
}

View file

@ -80,9 +80,9 @@
-0.25
],
"scale": [
1.5,
1.5,
1.5
1.4,
1.4,
1.4
]
}
}

View file

@ -81,9 +81,9 @@
0
],
"scale": [
1.3,
1.3,
1.3
1.55,
1.55,
1.55
]
}
}

View file

@ -80,9 +80,9 @@
0
],
"scale": [
1.3,
1.3,
1.3
1.55,
1.55,
1.55
]
}
}

View file

@ -81,9 +81,9 @@
-0.75
],
"scale": [
1.4,
1.4,
1.4
1.6,
1.6,
1.6
]
}
}

View file

@ -81,9 +81,9 @@
-9.75
],
"scale": [
1.5,
1.5,
1.5
1.65,
1.66,
1.65
]
}
}

View file

@ -85,9 +85,9 @@
0
],
"scale": [
1.25,
1.25,
1.25
1.15,
1.15,
1.15
]
}
}

View file

@ -7,30 +7,6 @@
],
"gui_light": "front",
"display": {
"thirdperson_righthand": {
"translation": [
0,
3.25,
-2
],
"scale": [
0.75,
0.75,
0.75
]
},
"thirdperson_lefthand": {
"translation": [
0,
3.25,
-2
],
"scale": [
0.75,
0.75,
0.75
]
},
"firstperson_righthand": {
"rotation": [
0,
@ -49,11 +25,25 @@
]
},
"firstperson_lefthand": {
"scale": [
0,
0,
0
]
},
"thirdperson_righthand": {
"translation": [
-4.5,
9,
4
-0.75,
0.25,
2.75
],
"scale": [
0.6,
0.6,
0.6
]
},
"thirdperson_lefthand": {
"scale": [
0,
0,
@ -63,54 +53,37 @@
"ground": {
"translation": [
0,
3,
0
2.5,
3.5
],
"scale": [
0.75,
0.75,
0.75
]
},
"gui": {
"rotation": [
-60,
135,
60
],
"translation": [
0,
2,
0
],
"scale": [
0.45,
0.45,
0.45
0.65,
0.65,
0.65
]
},
"head": {
"rotation": [
"translation": [
0,
-90,
0
6.25,
3.5
]
},
"fixed": {
"rotation": [
0,
90,
-90,
0
],
"translation": [
-1.5,
5.25,
-2
-0.25,
0
],
"scale": [
1.5,
1.5,
1.5
1.3,
1.3,
1.3
]
}
}

View file

@ -80,9 +80,9 @@
0
],
"scale": [
1.3,
1.3,
1.3
1.55,
1.55,
1.55
]
}
}

View file

@ -6,30 +6,6 @@
128
],
"display": {
"thirdperson_righthand": {
"translation": [
0,
0.75,
-3.25
],
"scale": [
0.55,
0.55,
0.55
]
},
"thirdperson_lefthand": {
"translation": [
0,
0.75,
-3.25
],
"scale": [
0.55,
0.55,
0.55
]
},
"firstperson_righthand": {
"translation": [
2.75,
@ -59,23 +35,47 @@
0
]
},
"thirdperson_righthand": {
"translation": [
-0.5,
1.5,
1.25
],
"scale": [
0.8,
0.8,
0.8
]
},
"thirdperson_lefthand": {
"scale": [
0,
0,
0
]
},
"ground": {
"translation": [
0,
3,
0
4,
2.25
],
"scale": [
1,
1,
1
0.75,
0.75,
0.75
]
},
"gui": {
"rotation": [
30,
-145,
0
90,
-45,
90
],
"translation": [
1,
0.75,
-0.75
],
"scale": [
0.6,
@ -83,21 +83,28 @@
0.6
]
},
"head": {
"translation": [
0,
10.75,
2.75
]
},
"fixed": {
"rotation": [
0,
90,
-90,
0
],
"translation": [
-1.75,
-0.25,
-2
-3.5,
1.25,
-0.5
],
"scale": [
1.1,
1.1,
1.1
1.25,
1.25,
1.25
]
}
}

View file

@ -7,23 +7,6 @@
],
"gui_light": "front",
"display": {
"thirdperson_lefthand": {
"rotation": [
90,
-90,
0
],
"translation": [
0,
-2,
-1.25
],
"scale": [
1.1,
1.1,
1.1
]
},
"firstperson_righthand": {
"translation": [
2.75,
@ -37,16 +20,25 @@
]
},
"firstperson_lefthand": {
"rotation": [
13,
36,
-17
],
"scale": [
0,
0,
0
]
},
"thirdperson_righthand": {
"translation": [
0.25,
-80,
-0.25
-1.5,
0,
-3
],
"scale": [
0.7,
0.7,
0.7
]
},
"thirdperson_lefthand": {
"scale": [
0,
0,
@ -56,13 +48,13 @@
"ground": {
"translation": [
0,
1.5,
0
5.5,
0.25
],
"scale": [
1.2,
1.2,
1.2
0.75,
0.75,
0.75
]
},
"gui": {
@ -72,12 +64,19 @@
0
],
"scale": [
0.6,
0.6,
0.6
0.5,
0.5,
0.5
]
},
"head": {
"translation": [
0,
7.75,
-3
]
},
"fixed": {
"rotation": [
0,
-90,
@ -85,30 +84,13 @@
],
"translation": [
0,
17.25,
-0.25,
0
],
"scale": [
2.5,
2.5,
2.5
]
},
"fixed": {
"rotation": [
0,
90,
0
],
"translation": [
0.25,
2.75,
-1.75
],
"scale": [
2,
2,
2
1.25,
1.25,
1.25
]
}
}

View file

@ -80,9 +80,9 @@
0
],
"scale": [
1.3,
1.3,
1.3
1.55,
1.55,
1.55
]
}
}

View file

@ -75,9 +75,9 @@
0
],
"scale": [
1.3,
1.3,
1.3
1.55,
1.55,
1.55
]
}
}

View file

@ -70,9 +70,9 @@
0
],
"scale": [
1.2,
1.2,
1.2
1.5,
1.5,
1.5
]
}
}

View file

@ -1,192 +0,0 @@
{
"credit": "Made with Blockbench",
"texture_size": [32, 32],
"textures": {
"2": "superbwarfare:item/lod/rpg",
"particle": "superbwarfare:item/lod/rpg"
},
"elements": [
{
"from": [7, 1.3, 9.25],
"to": [9, 3.3, 21],
"rotation": {"angle": 0, "axis": "y", "origin": [7.5625, 1.425, 8.125]},
"faces": {
"north": {"uv": [7.5, 0.5, 8.5, 1.5], "texture": "#2"},
"east": {"uv": [0, 0, 6, 1], "texture": "#2"},
"south": {"uv": [7, 7.5, 8, 8.5], "texture": "#2"},
"west": {"uv": [0, 1, 6, 2], "texture": "#2"},
"up": {"uv": [1, 8, 0, 2], "texture": "#2"},
"down": {"uv": [2, 2, 1, 8], "texture": "#2"}
}
},
{
"from": [7.25, 1.55, 21],
"to": [8.75, 3.05, 27],
"rotation": {"angle": 0, "axis": "y", "origin": [7.5625, 1.425, 8.125]},
"faces": {
"north": {"uv": [8.5, 9, 9.5, 9.5], "texture": "#2"},
"east": {"uv": [6, 7, 9, 7.5], "texture": "#2"},
"south": {"uv": [9, 8.5, 10, 9], "texture": "#2"},
"west": {"uv": [7.5, 0, 10.5, 0.5], "texture": "#2"},
"up": {"uv": [4, 6, 3, 3], "texture": "#2"},
"down": {"uv": [5, 3, 4, 6], "texture": "#2"}
}
},
{
"from": [7.5, 1.8, 1.75],
"to": [8.5, 2.8, 9.25],
"rotation": {"angle": 0, "axis": "y", "origin": [7.5625, 1.425, 8.125]},
"faces": {
"north": {"uv": [8, 4.5, 8.5, 5], "texture": "#2"},
"east": {"uv": [6, 1.5, 10, 2], "texture": "#2"},
"south": {"uv": [9.5, 3, 10, 3.5], "texture": "#2"},
"west": {"uv": [6, 6.5, 10, 7], "texture": "#2"},
"up": {"uv": [4.5, 10, 4, 6], "texture": "#2"},
"down": {"uv": [5, 6, 4.5, 10], "texture": "#2"}
}
},
{
"from": [6.75, 2.3, 3.25],
"to": [7.5, 4.8, 3.5],
"rotation": {"angle": 0, "axis": "y", "origin": [7.5625, 1.425, 8.125]},
"faces": {
"north": {"uv": [8, 3, 8.5, 4.5], "texture": "#2"},
"east": {"uv": [5, 8, 5.5, 9.5], "texture": "#2"},
"south": {"uv": [5.5, 8, 6, 9.5], "texture": "#2"},
"west": {"uv": [8, 7.5, 8.5, 9], "texture": "#2"},
"up": {"uv": [10, 4, 9.5, 3.5], "texture": "#2"},
"down": {"uv": [10, 4, 9.5, 4.5], "texture": "#2"}
}
},
{
"from": [6.75, 2.3, 11.75],
"to": [7.5, 4.8, 12],
"rotation": {"angle": 0, "axis": "y", "origin": [7.5625, 1.425, 8.125]},
"faces": {
"north": {"uv": [8.5, 3, 9, 4.5], "texture": "#2"},
"east": {"uv": [8.5, 4.5, 9, 6], "texture": "#2"},
"south": {"uv": [7, 8.5, 7.5, 10], "texture": "#2"},
"west": {"uv": [7.5, 8.5, 8, 10], "texture": "#2"},
"up": {"uv": [5.5, 10, 5, 9.5], "texture": "#2"},
"down": {"uv": [6, 9.5, 5.5, 10], "texture": "#2"}
}
},
{
"from": [7.5, 1.8, -13],
"to": [8.5, 2.8, 1.75],
"rotation": {"angle": 0, "axis": "y", "origin": [7.5625, 1.425, 8.125]},
"faces": {
"north": {"uv": [9.5, 7, 10, 7.5], "texture": "#2"},
"east": {"uv": [2, 2, 9.5, 2.5], "texture": "#2"},
"south": {"uv": [9.5, 7.5, 10, 8], "texture": "#2"},
"west": {"uv": [2, 2.5, 9.5, 3], "texture": "#2"},
"up": {"uv": [2.5, 10.5, 2, 3], "texture": "#2"},
"down": {"uv": [3, 3, 2.5, 10.5], "texture": "#2"}
}
},
{
"from": [7, 1.3, -7.5],
"to": [9, 3.3, -2],
"rotation": {"angle": 0, "axis": "y", "origin": [7.5625, 1.425, 8.125]},
"faces": {
"north": {"uv": [0, 8, 1, 9], "texture": "#2"},
"east": {"uv": [5, 3, 8, 4], "texture": "#2"},
"south": {"uv": [1, 8, 2, 9], "texture": "#2"},
"west": {"uv": [5, 4, 8, 5], "texture": "#2"},
"up": {"uv": [6, 8, 5, 5], "texture": "#2"},
"down": {"uv": [4, 6, 3, 9], "texture": "#2"}
}
},
{
"from": [7.25, 1.55, -12.5],
"to": [8.75, 3.05, -10],
"rotation": {"angle": 0, "axis": "y", "origin": [7.5625, 1.425, 8.125]},
"faces": {
"north": {"uv": [9.5, 2, 10.5, 2.5], "texture": "#2"},
"east": {"uv": [8.5, 0.5, 10, 1], "texture": "#2"},
"south": {"uv": [9.5, 2.5, 10.5, 3], "texture": "#2"},
"west": {"uv": [8.5, 1, 10, 1.5], "texture": "#2"},
"up": {"uv": [8.5, 6.5, 7.5, 5], "texture": "#2"},
"down": {"uv": [7, 7.5, 6, 9], "texture": "#2"}
}
},
{
"from": [7.5, -1.2, 11.75],
"to": [8.5, 1.3, 12.75],
"rotation": {"angle": 0, "axis": "y", "origin": [7.5625, 1.425, 8.125]},
"faces": {
"north": {"uv": [8.5, 7.5, 9, 9], "texture": "#2"},
"east": {"uv": [0, 9, 0.5, 10.5], "texture": "#2"},
"south": {"uv": [0.5, 9, 1, 10.5], "texture": "#2"},
"west": {"uv": [1, 9, 1.5, 10.5], "texture": "#2"},
"up": {"uv": [10, 8.5, 9.5, 8], "texture": "#2"},
"down": {"uv": [9, 9.5, 8.5, 10], "texture": "#2"}
}
},
{
"from": [7.5, -1.95, 6.25],
"to": [8.5, 0.55, 7.25],
"rotation": {"angle": 0, "axis": "y", "origin": [7.5625, 1.425, 8.125]},
"faces": {
"north": {"uv": [1.5, 9, 2, 10.5], "texture": "#2"},
"east": {"uv": [3, 9, 3.5, 10.5], "texture": "#2"},
"south": {"uv": [9, 3, 9.5, 4.5], "texture": "#2"},
"west": {"uv": [3.5, 9, 4, 10.5], "texture": "#2"},
"up": {"uv": [9.5, 10, 9, 9.5], "texture": "#2"},
"down": {"uv": [10, 9, 9.5, 9.5], "texture": "#2"}
}
},
{
"from": [7.5, 0.55, 4.75],
"to": [8.5, 1.8, 7.5],
"rotation": {"angle": 0, "axis": "y", "origin": [7.5625, 1.425, 8.125]},
"faces": {
"north": {"uv": [9.5, 9.5, 10, 10], "texture": "#2"},
"east": {"uv": [8.5, 6, 10, 6.5], "texture": "#2"},
"south": {"uv": [10, 0.5, 10.5, 1], "texture": "#2"},
"west": {"uv": [9, 4.5, 10.5, 5], "texture": "#2"},
"up": {"uv": [6.5, 10.5, 6, 9], "texture": "#2"},
"down": {"uv": [7, 9, 6.5, 10.5], "texture": "#2"}
}
},
{
"from": [6.5, 0.8, 27],
"to": [9.5, 3.8, 28],
"rotation": {"angle": 0, "axis": "y", "origin": [7.5625, 1.425, 8.125]},
"faces": {
"north": {"uv": [6, 0, 7.5, 1.5], "texture": "#2"},
"east": {"uv": [9, 7, 9.5, 8.5], "texture": "#2"},
"south": {"uv": [6, 5, 7.5, 6.5], "texture": "#2"},
"west": {"uv": [8, 9, 8.5, 10.5], "texture": "#2"},
"up": {"uv": [10.5, 5.5, 9, 5], "texture": "#2"},
"down": {"uv": [10.5, 5.5, 9, 6], "texture": "#2"}
}
}
],
"display": {
"thirdperson_righthand": {
"translation": [-1.25, 7.5, 2.25]
},
"thirdperson_lefthand": {
"scale": [0, 0, 0]
},
"ground": {
"translation": [0, 6, -5]
},
"head": {
"translation": [0, 14.75, -5.25]
},
"fixed": {
"rotation": [90, -45, 90],
"translation": [-0.5, 7.25, 0]
}
},
"groups": [
{
"name": "group",
"origin": [0, 0, 0],
"color": 0,
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
}
]
}

View file

@ -1,240 +0,0 @@
{
"credit": "Made with Blockbench",
"texture_size": [64, 64],
"textures": {
"0": "superbwarfare:item/lod/sentinel",
"particle": "superbwarfare:item/lod/sentinel"
},
"elements": [
{
"from": [7.75, 6, -13],
"to": [8.5, 7, -1],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 1]},
"faces": {
"north": {"uv": [6.5, 2.5, 6.75, 2.75], "texture": "#0"},
"east": {"uv": [5.5, 3.25, 8.5, 3.5], "texture": "#0"},
"south": {"uv": [3.75, 6.75, 4, 7], "texture": "#0"},
"west": {"uv": [5.5, 3.5, 8.5, 3.75], "texture": "#0"},
"up": {"uv": [5.75, 6.75, 5.5, 3.75], "texture": "#0"},
"down": {"uv": [6, 3.75, 5.75, 6.75], "texture": "#0"}
}
},
{
"from": [9, 6.5, 21.25],
"to": [10.75, 7.5, 22.25],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 1.5]},
"faces": {
"north": {"uv": [5, 2.75, 5.5, 3], "texture": "#0"},
"east": {"uv": [6.5, 7.5, 6.75, 7.75], "texture": "#0"},
"south": {"uv": [7.5, 2, 8, 2.25], "texture": "#0"},
"west": {"uv": [7.5, 6.5, 7.75, 6.75], "texture": "#0"},
"up": {"uv": [8, 2.75, 7.5, 2.5], "texture": "#0"},
"down": {"uv": [8, 2.75, 7.5, 3], "texture": "#0"}
}
},
{
"from": [7.25, 5.5, -4.5],
"to": [9, 7.5, 29.75],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 1.5]},
"faces": {
"north": {"uv": [4.5, 2.5, 5, 3], "texture": "#0"},
"east": {"uv": [0, 0, 8.5, 0.5], "texture": "#0"},
"south": {"uv": [7, 3.75, 7.5, 4.25], "texture": "#0"},
"west": {"uv": [0, 0.5, 8.5, 1], "texture": "#0"},
"up": {"uv": [0.5, 9.5, 0, 1], "texture": "#0"},
"down": {"uv": [1, 1, 0.5, 9.5], "texture": "#0"}
}
},
{
"from": [7.05, 6.75, 24.25],
"to": [9.2, 7.75, 28.5],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 1.5]},
"faces": {
"north": {"uv": [7.5, 3.75, 8, 4], "texture": "#0"},
"east": {"uv": [4.25, 7, 5.25, 7.25], "texture": "#0"},
"south": {"uv": [7.5, 4, 8, 4.25], "texture": "#0"},
"west": {"uv": [7, 4.25, 8, 4.5], "texture": "#0"},
"up": {"uv": [1.5, 7.5, 1, 6.5], "texture": "#0"},
"down": {"uv": [2, 6.5, 1.5, 7.5], "texture": "#0"}
}
},
{
"from": [7.25, 7.5, 7.25],
"to": [9, 8, 21.25],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 1.5]},
"faces": {
"north": {"uv": [7.5, 4.5, 8, 4.75], "texture": "#0"},
"east": {"uv": [3.75, 1, 7.25, 1.25], "texture": "#0"},
"south": {"uv": [7.5, 4.75, 8, 5], "texture": "#0"},
"west": {"uv": [3.75, 1.25, 7.25, 1.5], "texture": "#0"},
"up": {"uv": [1.5, 6.5, 1, 3], "texture": "#0"},
"down": {"uv": [2, 3, 1.5, 6.5], "texture": "#0"}
}
},
{
"from": [7, 8, 13],
"to": [9.25, 10, 17.5],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 1.5]},
"faces": {
"north": {"uv": [7, 4.5, 7.5, 5], "texture": "#0"},
"east": {"uv": [3.75, 1.5, 5, 2], "texture": "#0"},
"south": {"uv": [7, 5, 7.5, 5.5], "texture": "#0"},
"west": {"uv": [3.75, 2, 5, 2.5], "texture": "#0"},
"up": {"uv": [5.5, 2.75, 5, 1.5], "texture": "#0"},
"down": {"uv": [4.5, 5.75, 4, 7], "texture": "#0"}
}
},
{
"from": [7.25, 2, 18.75],
"to": [9, 5.5, 29.75],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 1.5]},
"faces": {
"north": {"uv": [6.5, 1.5, 7, 2.5], "texture": "#0"},
"east": {"uv": [1, 1, 3.75, 2], "texture": "#0"},
"south": {"uv": [6.5, 3.75, 7, 4.75], "texture": "#0"},
"west": {"uv": [1, 2, 3.75, 3], "texture": "#0"},
"up": {"uv": [3.5, 6.75, 3, 4], "texture": "#0"},
"down": {"uv": [4, 4, 3.5, 6.75], "texture": "#0"}
}
},
{
"from": [7.5, 0.5, 22.25],
"to": [8.75, 2, 25],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 1.5]},
"faces": {
"north": {"uv": [2.75, 7.5, 3, 8], "texture": "#0"},
"east": {"uv": [3.75, 2.5, 4.5, 3], "texture": "#0"},
"south": {"uv": [7.5, 5, 7.75, 5.5], "texture": "#0"},
"west": {"uv": [6, 2.75, 6.75, 3.25], "texture": "#0"},
"up": {"uv": [5.5, 7.75, 5.25, 7], "texture": "#0"},
"down": {"uv": [3.75, 7.25, 3.5, 8], "texture": "#0"}
}
},
{
"from": [7, 1, 29.75],
"to": [9.25, 7.75, 32],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 1.5]},
"faces": {
"north": {"uv": [4, 4, 4.5, 5.75], "texture": "#0"},
"east": {"uv": [4.5, 4, 5, 5.75], "texture": "#0"},
"south": {"uv": [5, 4, 5.5, 5.75], "texture": "#0"},
"west": {"uv": [5.5, 1.5, 6, 3.25], "texture": "#0"},
"up": {"uv": [7.5, 6, 7, 5.5], "texture": "#0"},
"down": {"uv": [7.5, 6, 7, 6.5], "texture": "#0"}
}
},
{
"from": [7.25, 1.6, 25],
"to": [9, 2, 29.75],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 1.5]},
"faces": {
"north": {"uv": [5.5, 7.5, 6, 7.75], "texture": "#0"},
"east": {"uv": [6.75, 3, 8, 3.25], "texture": "#0"},
"south": {"uv": [7.5, 5.5, 8, 5.75], "texture": "#0"},
"west": {"uv": [7, 2.25, 8.25, 2.5], "texture": "#0"},
"up": {"uv": [5, 7, 4.5, 5.75], "texture": "#0"},
"down": {"uv": [5.5, 5.75, 5, 7], "texture": "#0"}
}
},
{
"from": [7.25, 4, 0.5],
"to": [9, 5.5, 14.5],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 1.5]},
"faces": {
"north": {"uv": [7, 6.5, 7.5, 7], "texture": "#0"},
"east": {"uv": [2, 3, 5.5, 3.5], "texture": "#0"},
"south": {"uv": [7, 7, 7.5, 7.5], "texture": "#0"},
"west": {"uv": [2, 3.5, 5.5, 4], "texture": "#0"},
"up": {"uv": [2.5, 7.5, 2, 4], "texture": "#0"},
"down": {"uv": [3, 4, 2.5, 7.5], "texture": "#0"}
}
},
{
"from": [7.25, 0.79359, 14.97051],
"to": [9, 5.59359, 16.47051],
"rotation": {"angle": -22.5, "axis": "x", "origin": [8.125, 0.59359, 15.72051]},
"faces": {
"north": {"uv": [6, 1.5, 6.5, 2.75], "texture": "#0"},
"east": {"uv": [6, 3.75, 6.5, 5], "texture": "#0"},
"south": {"uv": [6, 5, 6.5, 6.25], "texture": "#0"},
"west": {"uv": [6, 6.25, 6.5, 7.5], "texture": "#0"},
"up": {"uv": [7.75, 1.5, 7.25, 1], "texture": "#0"},
"down": {"uv": [3.5, 7.25, 3, 7.75], "texture": "#0"}
}
},
{
"from": [7.25, 0.79359, 16.47051],
"to": [9, 2.34359, 19.72051],
"rotation": {"angle": -22.5, "axis": "x", "origin": [8.125, 0.59359, 15.72051]},
"faces": {
"north": {"uv": [4.25, 7.25, 4.75, 7.75], "texture": "#0"},
"east": {"uv": [6.75, 2.5, 7.5, 3], "texture": "#0"},
"south": {"uv": [4.75, 7.25, 5.25, 7.75], "texture": "#0"},
"west": {"uv": [3, 6.75, 3.75, 7.25], "texture": "#0"},
"up": {"uv": [6, 7.5, 5.5, 6.75], "texture": "#0"},
"down": {"uv": [7, 6.75, 6.5, 7.5], "texture": "#0"}
}
},
{
"from": [7.25, 3, 10.5],
"to": [9, 4, 14.5],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 1.5]},
"faces": {
"north": {"uv": [7.5, 5.75, 8, 6], "texture": "#0"},
"east": {"uv": [1, 7.5, 2, 7.75], "texture": "#0"},
"south": {"uv": [6, 7.5, 6.5, 7.75], "texture": "#0"},
"west": {"uv": [7.5, 1.5, 8.5, 1.75], "texture": "#0"},
"up": {"uv": [7, 5.75, 6.5, 4.75], "texture": "#0"},
"down": {"uv": [7, 5.75, 6.5, 6.75], "texture": "#0"}
}
},
{
"from": [7.25, 5.95, -16],
"to": [9, 7.05, -13],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 1, 1]},
"faces": {
"north": {"uv": [7.5, 6, 8, 6.25], "texture": "#0"},
"east": {"uv": [7.5, 1.75, 8.25, 2], "texture": "#0"},
"south": {"uv": [7.5, 6.25, 8, 6.5], "texture": "#0"},
"west": {"uv": [2, 7.5, 2.75, 7.75], "texture": "#0"},
"up": {"uv": [7.5, 2.25, 7, 1.5], "texture": "#0"},
"down": {"uv": [4.25, 7, 3.75, 7.75], "texture": "#0"}
}
}
],
"gui_light": "front",
"display": {
"thirdperson_righthand": {
"translation": [-1.5, 2, -4],
"scale": [0.5, 0.5, 0.5]
},
"thirdperson_lefthand": {
"translation": [-1.5, 2, -4],
"scale": [0, 0, 0]
},
"ground": {
"translation": [0, 5.5, -3.25],
"scale": [0.7, 0.7, 0.7]
},
"gui": {
"rotation": [30, -145, 0],
"scale": [0.5, 0.5, 0.5]
},
"head": {
"translation": [0, 12.25, -5.25]
},
"fixed": {
"rotation": [0, 90, 0],
"translation": [0.25, 2.75, -1.75],
"scale": [1.2, 1.2, 1.2]
}
},
"groups": [
{
"name": "group",
"origin": [8, 8, 8],
"color": 0,
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
}
]
}

View file

@ -2,7 +2,7 @@
"ID": "superbwarfare:a_10a",
"MaxHealth": 350,
"MaxEnergy": 10000000,
"UpStep": 0.5,
"UpStep": 1.1,
"Mass": 20,
"AllowFreeCam": true,
"DamageModifiers": [

View file

@ -2,7 +2,7 @@
"ID": "superbwarfare:tom_6",
"MaxHealth": 40,
"MaxEnergy": 100000,
"UpStep": 0.5,
"UpStep": 1.1,
"Mass": 0.02,
"AllowFreeCam": true,
"DamageModifiers": [