修改主类名称

This commit is contained in:
Light_Quanta 2025-03-29 06:07:34 +08:00
parent 860ecc63ae
commit d5bbb7c224
No known key found for this signature in database
GPG key ID: 11A39A1B8C890959
270 changed files with 1248 additions and 1249 deletions

View file

@ -11,7 +11,6 @@ import net.minecraft.resources.ResourceLocation;
import net.neoforged.bus.api.IEventBus;
import net.neoforged.bus.api.SubscribeEvent;
import net.neoforged.fml.ModContainer;
import net.neoforged.fml.common.Mod;
import net.neoforged.fml.config.ModConfig;
import net.neoforged.fml.event.lifecycle.FMLClientSetupEvent;
import net.neoforged.neoforge.client.event.ClientTickEvent;
@ -26,15 +25,15 @@ import java.util.Collection;
import java.util.List;
import java.util.concurrent.ConcurrentLinkedQueue;
@Mod(ModUtils.MODID)
public class ModUtils {
@net.neoforged.fml.common.Mod(Mod.MODID)
public class Mod {
public static final String MODID = "superbwarfare";
public static final String ATTRIBUTE_MODIFIER = "superbwarfare_attribute_modifier";
public static final Logger LOGGER = LogManager.getLogger(ModUtils.class);
public static final Logger LOGGER = LogManager.getLogger(Mod.class);
public ModUtils(IEventBus bus, ModContainer container) {
public Mod(IEventBus bus, ModContainer container) {
container.registerConfig(ModConfig.Type.CLIENT, ClientConfig.init());
container.registerConfig(ModConfig.Type.COMMON, CommonConfig.init());
container.registerConfig(ModConfig.Type.SERVER, ServerConfig.init());

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.capability;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.block.entity.ChargingStationBlockEntity;
import com.atsuishio.superbwarfare.block.entity.CreativeChargingStationBlockEntity;
import com.atsuishio.superbwarfare.capability.energy.BlockEnergyStorageProvider;
@ -20,11 +20,11 @@ import net.neoforged.neoforge.capabilities.Capabilities;
import net.neoforged.neoforge.capabilities.EntityCapability;
import net.neoforged.neoforge.capabilities.RegisterCapabilitiesEvent;
@EventBusSubscriber(modid = ModUtils.MODID, bus = EventBusSubscriber.Bus.MOD)
@EventBusSubscriber(modid = Mod.MODID, bus = EventBusSubscriber.Bus.MOD)
public class ModCapabilities {
public static final EntityCapability<LaserCapability, Void> LASER_CAPABILITY = EntityCapability.createVoid(ModUtils.loc("laser_capability"), LaserCapability.class);
public static final EntityCapability<PlayerVariable, Void> PLAYER_VARIABLE = EntityCapability.createVoid(ModUtils.loc("player_variable"), PlayerVariable.class);
public static final EntityCapability<LaserCapability, Void> LASER_CAPABILITY = EntityCapability.createVoid(Mod.loc("laser_capability"), LaserCapability.class);
public static final EntityCapability<PlayerVariable, Void> PLAYER_VARIABLE = EntityCapability.createVoid(Mod.loc("player_variable"), PlayerVariable.class);
@SubscribeEvent
public static void registerCapabilities(RegisterCapabilitiesEvent event) {

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.capability.player;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.capability.ModCapabilities;
import com.atsuishio.superbwarfare.network.message.receive.PlayerVariablesSyncMessage;
import com.atsuishio.superbwarfare.tools.AmmoType;
@ -14,7 +14,7 @@ import net.neoforged.neoforge.event.entity.player.PlayerEvent;
import net.neoforged.neoforge.network.PacketDistributor;
// TODO 在退出世界时正确持久化弹药数量
@EventBusSubscriber(modid = ModUtils.MODID)
@EventBusSubscriber(modid = Mod.MODID)
public class PlayerVariable {
public boolean zoom = false;
public boolean holdFire = false;

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.TargetEntity;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class TargetLayer extends GeoRenderLayer<TargetEntity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/target_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/target_e.png");
public TargetLayer(GeoRenderer<TargetEntity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.rifle.AK12Item;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -14,7 +14,7 @@ import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class AK12Layer extends GeoRenderLayer<AK12Item> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/ak12_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/ak12_e.png");
public AK12Layer(GeoRenderer<AK12Item> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.rifle.AK47Item;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -14,7 +14,7 @@ import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class AK47Layer extends GeoRenderLayer<AK47Item> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/ak47_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/ak47_e.png");
public AK47Layer(GeoRenderer<AK47Item> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.shotgun.Aa12Item;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -14,7 +14,7 @@ import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class Aa12Layer extends GeoRenderLayer<Aa12Item> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/aa12_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/aa12_e.png");
public Aa12Layer(GeoRenderer<Aa12Item> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.special.BocekItem;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class BocekLayer extends GeoRenderLayer<BocekItem> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/bocek_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/bocek_e.png");
public BocekLayer(GeoRenderer<BocekItem> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.machinegun.DevotionItem;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class DevotionLayer extends GeoRenderLayer<DevotionItem> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/devotion_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/devotion_e.png");
public DevotionLayer(GeoRenderer<DevotionItem> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.handgun.Glock17Item;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class Glock17Layer extends GeoRenderLayer<Glock17Item> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/glock17_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/glock17_e.png");
public Glock17Layer(GeoRenderer<Glock17Item> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.client.ModRenderTypes;
import com.atsuishio.superbwarfare.item.gun.handgun.Glock17Item;
import com.mojang.blaze3d.vertex.PoseStack;
@ -14,7 +14,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class Glock17LightLayer extends GeoRenderLayer<Glock17Item> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/glock17_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/glock17_e.png");
public Glock17LightLayer(GeoRenderer<Glock17Item> itemGeoRenderer) {
super(itemGeoRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.handgun.Glock18Item;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class Glock18Layer extends GeoRenderLayer<Glock18Item> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/glock17_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/glock17_e.png");
public Glock18Layer(GeoRenderer<Glock18Item> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.client.ModRenderTypes;
import com.atsuishio.superbwarfare.item.gun.handgun.Glock18Item;
import com.mojang.blaze3d.vertex.PoseStack;
@ -14,7 +14,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class Glock18LightLayer extends GeoRenderLayer<Glock18Item> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/glock17_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/glock17_e.png");
public Glock18LightLayer(GeoRenderer<Glock18Item> itemGeoRenderer) {
super(itemGeoRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.rifle.Hk416Item;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class Hk416Layer extends GeoRenderLayer<Hk416Item> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/hk416_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/hk416_e.png");
public Hk416Layer(GeoRenderer<Hk416Item> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.shotgun.HomemadeShotgunItem;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -14,7 +14,7 @@ import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class HomemadeShotgunLayer extends GeoRenderLayer<HomemadeShotgunItem> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/homemade_shotgun_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/homemade_shotgun_e.png");
public HomemadeShotgunLayer(GeoRenderer<HomemadeShotgunItem> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.sniper.HuntingRifleItem;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class HuntingRifleLayer extends GeoRenderLayer<HuntingRifleItem> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/hunting_rifle_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/hunting_rifle_e.png");
public HuntingRifleLayer(GeoRenderer<HuntingRifleItem> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.sniper.K98Item;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class K98Layer extends GeoRenderLayer<K98Item> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/k98_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/k98_e.png");
public K98Layer(GeoRenderer<K98Item> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.handgun.M1911Item;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class M1911Layer extends GeoRenderLayer<M1911Item> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/m1911_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/m1911_e.png");
public M1911Layer(GeoRenderer<M1911Item> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.rifle.M4Item;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class M4Layer extends GeoRenderLayer<M4Item> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/m4_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/m4_e.png");
public M4Layer(GeoRenderer<M4Item> itemGeoRenderer) {
super(itemGeoRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.machinegun.M60Item;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class M60Layer extends GeoRenderLayer<M60Item> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/m60_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/m60_e.png");
public M60Layer(GeoRenderer<M60Item> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.launcher.M79Item;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class M79Layer extends GeoRenderLayer<M79Item> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/m79_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/m79_e.png");
public M79Layer(GeoRenderer<M79Item> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.shotgun.M870Item;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class M870Layer extends GeoRenderLayer<M870Item> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/m870_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/m870_e.png");
public M870Layer(GeoRenderer<M870Item> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.sniper.M98bItem;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class M98bLayer extends GeoRenderLayer<M98bItem> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/m98b_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/m98b_e.png");
public M98bLayer(GeoRenderer<M98bItem> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.rifle.MarlinItem;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class MarlinLayer extends GeoRenderLayer<MarlinItem> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/marlin_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/marlin_e.png");
public MarlinLayer(GeoRenderer<MarlinItem> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.client.ModRenderTypes;
import com.atsuishio.superbwarfare.init.ModTags;
import com.atsuishio.superbwarfare.item.gun.machinegun.MinigunItem;
@ -20,7 +20,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class MinigunHeatLayer extends GeoRenderLayer<MinigunItem> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/minigun_heat_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/minigun_heat_e.png");
public MinigunHeatLayer(GeoRenderer<MinigunItem> itemGeoRenderer) {
super(itemGeoRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.machinegun.MinigunItem;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class MinigunLayer extends GeoRenderLayer<MinigunItem> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/minigun_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/minigun_e.png");
public MinigunLayer(GeoRenderer<MinigunItem> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.rifle.Mk14Item;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class Mk14Layer extends GeoRenderLayer<Mk14Item> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/mk14_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/mk14_e.png");
public Mk14Layer(GeoRenderer<Mk14Item> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.sniper.MosinNagantItem;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class MosinNagantLayer extends GeoRenderLayer<MosinNagantItem> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/mosin_nagant_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/mosin_nagant_e.png");
public MosinNagantLayer(GeoRenderer<MosinNagantItem> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.handgun.Mp443Item;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class Mp443Layer extends GeoRenderLayer<Mp443Item> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/mp443_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/mp443_e.png");
public Mp443Layer(GeoRenderer<Mp443Item> itemGeoRenderer) {
super(itemGeoRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.client.ModRenderTypes;
import com.atsuishio.superbwarfare.item.gun.handgun.Mp443Item;
import com.mojang.blaze3d.vertex.PoseStack;
@ -14,7 +14,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class Mp443LightLayer extends GeoRenderLayer<Mp443Item> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/mp443_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/mp443_e.png");
public Mp443LightLayer(GeoRenderer<Mp443Item> itemGeoRenderer) {
super(itemGeoRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.heavy.Ntw20Item;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class Ntw20Layer extends GeoRenderLayer<Ntw20Item> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/ntw_20_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/ntw_20_e.png");
public Ntw20Layer(GeoRenderer<Ntw20Item> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.rifle.Qbz95Item;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class Qbz95Layer extends GeoRenderLayer<Qbz95Item> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/qbz95_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/qbz95_e.png");
public Qbz95Layer(GeoRenderer<Qbz95Item> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.machinegun.RpkItem;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class RpkLayer extends GeoRenderLayer<RpkItem> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/rpk_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/rpk_e.png");
public RpkLayer(GeoRenderer<RpkItem> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.client.ModRenderTypes;
import com.atsuishio.superbwarfare.item.gun.launcher.SecondaryCataclysm;
import com.mojang.blaze3d.vertex.PoseStack;
@ -14,7 +14,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class SecondaryCataclysmLightLayer extends GeoRenderLayer<SecondaryCataclysm> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/secondary_cataclysm_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/secondary_cataclysm_e.png");
public SecondaryCataclysmLightLayer(GeoRenderer<SecondaryCataclysm> itemGeoRenderer) {
super(itemGeoRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.sniper.SentinelItem;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class SentinelLayer extends GeoRenderLayer<SentinelItem> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/sentinel_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/sentinel_e.png");
public SentinelLayer(GeoRenderer<SentinelItem> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.client.ModRenderTypes;
import com.atsuishio.superbwarfare.item.gun.sniper.SentinelItem;
import com.mojang.blaze3d.vertex.PoseStack;
@ -14,7 +14,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class SentinelLightLayer extends GeoRenderLayer<SentinelItem> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/sentinel_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/sentinel_e.png");
public SentinelLightLayer(GeoRenderer<SentinelItem> itemGeoRenderer) {
super(itemGeoRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.rifle.SksItem;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class SksLayer extends GeoRenderLayer<SksItem> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/sks_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/sks_e.png");
public SksLayer(GeoRenderer<SksItem> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.sniper.SvdItem;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class SvdLayer extends GeoRenderLayer<SvdItem> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/ak12_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/ak12_e.png");
public SvdLayer(GeoRenderer<SvdItem> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.handgun.Trachelium;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class TracheliumLayer extends GeoRenderLayer<Trachelium> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/trachelium_texture_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/trachelium_texture_e.png");
public TracheliumLayer(GeoRenderer<Trachelium> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.client.ModRenderTypes;
import com.atsuishio.superbwarfare.item.gun.handgun.Trachelium;
import com.mojang.blaze3d.vertex.PoseStack;
@ -14,7 +14,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class TracheliumLightLayer extends GeoRenderLayer<Trachelium> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/trachelium_texture_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/trachelium_texture_e.png");
public TracheliumLightLayer(GeoRenderer<Trachelium> itemGeoRenderer) {
super(itemGeoRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.gun;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.gun.smg.VectorItem;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class VectorLayer extends GeoRenderLayer<VectorItem> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/item/vector_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/item/vector_e.png");
public VectorLayer(GeoRenderer<VectorItem> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.projectile;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.projectile.CannonShellEntity;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class CannonShellLayer extends GeoRenderLayer<CannonShellEntity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/cannon_shell_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/cannon_shell_e.png");
public CannonShellLayer(GeoRenderer<CannonShellEntity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.projectile;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.projectile.GunGrenadeEntity;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class GunGrenadeLayer extends GeoRenderLayer<GunGrenadeEntity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/cannon_shell_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/cannon_shell_e.png");
public GunGrenadeLayer(GeoRenderer<GunGrenadeEntity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.projectile;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.projectile.HeliRocketEntity;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class HeliRocketLayer extends GeoRenderLayer<HeliRocketEntity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/rpg_rocket_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/rpg_rocket_e.png");
public HeliRocketLayer(GeoRenderer<HeliRocketEntity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.projectile;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.projectile.JavelinMissileEntity;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class JavelinMissleLayer extends GeoRenderLayer<JavelinMissileEntity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/rpg_rocket_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/rpg_rocket_e.png");
public JavelinMissleLayer(GeoRenderer<JavelinMissileEntity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.projectile;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.projectile.ProjectileEntity;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -14,7 +14,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class ProjectileEntityInsideLayer extends GeoRenderLayer<ProjectileEntity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/projectile_entity_inside.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/projectile_entity_inside.png");
public ProjectileEntityInsideLayer(GeoRenderer<ProjectileEntity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.projectile;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.projectile.ProjectileEntity;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -14,7 +14,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class ProjectileEntityLayer extends GeoRenderLayer<ProjectileEntity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/projectile_entity.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/projectile_entity.png");
public ProjectileEntityLayer(GeoRenderer<ProjectileEntity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.projectile;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.projectile.RpgRocketEntity;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class RpgRocketLayer extends GeoRenderLayer<RpgRocketEntity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/rpg_rocket_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/rpg_rocket_e.png");
public RpgRocketLayer(GeoRenderer<RpgRocketEntity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.projectile;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.projectile.SmallCannonShellEntity;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class SmallCannonShellLayer extends GeoRenderLayer<SmallCannonShellEntity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/cannon_shell_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/cannon_shell_e.png");
public SmallCannonShellLayer(GeoRenderer<SmallCannonShellEntity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.projectile;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.projectile.WgMissileEntity;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class WgMissileLayer extends GeoRenderLayer<WgMissileEntity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/rpg_rocket_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/rpg_rocket_e.png");
public WgMissileLayer(GeoRenderer<WgMissileEntity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.vehicle;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.client.ModRenderTypes;
import com.atsuishio.superbwarfare.entity.vehicle.AnnihilatorEntity;
import com.mojang.blaze3d.vertex.PoseStack;
@ -15,7 +15,7 @@ import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class AnnihilatorGlowLayer extends GeoRenderLayer<AnnihilatorEntity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/annihilator_glow_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/annihilator_glow_e.png");
public AnnihilatorGlowLayer(GeoRenderer<AnnihilatorEntity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.vehicle;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.vehicle.AnnihilatorEntity;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -14,7 +14,7 @@ import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class AnnihilatorLayer extends GeoRenderLayer<AnnihilatorEntity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/annihilator_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/annihilator_e.png");
public AnnihilatorLayer(GeoRenderer<AnnihilatorEntity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.vehicle;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.vehicle.AnnihilatorEntity;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -14,7 +14,7 @@ import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class AnnihilatorLedLayer extends GeoRenderLayer<AnnihilatorEntity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/annihilator_led.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/annihilator_led.png");
public AnnihilatorLedLayer(GeoRenderer<AnnihilatorEntity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.vehicle;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.vehicle.AnnihilatorEntity;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -14,7 +14,7 @@ import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class AnnihilatorLedLightLayer extends GeoRenderLayer<AnnihilatorEntity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/annihilator_led.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/annihilator_led.png");
public AnnihilatorLedLightLayer(GeoRenderer<AnnihilatorEntity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.vehicle;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.vehicle.AnnihilatorEntity;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -16,7 +16,7 @@ import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class AnnihilatorPowerLayer extends GeoRenderLayer<AnnihilatorEntity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/annihilator_power.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/annihilator_power.png");
public AnnihilatorPowerLayer(GeoRenderer<AnnihilatorEntity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.vehicle;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.vehicle.AnnihilatorEntity;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -16,7 +16,7 @@ import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class AnnihilatorPowerLightLayer extends GeoRenderLayer<AnnihilatorEntity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/annihilator_power.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/annihilator_power.png");
public AnnihilatorPowerLightLayer(GeoRenderer<AnnihilatorEntity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.vehicle;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.vehicle.Bmp2Entity;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -14,7 +14,7 @@ import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class Bmp2Layer extends GeoRenderLayer<Bmp2Entity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/speedboat_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/speedboat_e.png");
public Bmp2Layer(GeoRenderer<Bmp2Entity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.vehicle;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.vehicle.LaserTowerEntity;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -14,7 +14,7 @@ import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class LaserTowerLaserLayer extends GeoRenderLayer<LaserTowerEntity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/laser_tower_laser.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/laser_tower_laser.png");
public LaserTowerLaserLayer(GeoRenderer<LaserTowerEntity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.vehicle;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.vehicle.LaserTowerEntity;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -16,7 +16,7 @@ import static com.atsuishio.superbwarfare.entity.vehicle.LaserTowerEntity.ACTIVE
public class LaserTowerPowerLayer extends GeoRenderLayer<LaserTowerEntity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/laser_tower_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/laser_tower_e.png");
public LaserTowerPowerLayer(GeoRenderer<LaserTowerEntity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.vehicle;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.vehicle.Lav150Entity;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -14,7 +14,7 @@ import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class Lav150Layer extends GeoRenderLayer<Lav150Entity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/speedboat_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/speedboat_e.png");
public Lav150Layer(GeoRenderer<Lav150Entity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.vehicle;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.vehicle.Mk42Entity;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -14,7 +14,7 @@ import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class Mk42Layer extends GeoRenderLayer<Mk42Entity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/sherman_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/sherman_e.png");
public Mk42Layer(GeoRenderer<Mk42Entity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.vehicle;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.vehicle.Mle1934Entity;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -13,7 +13,7 @@ import software.bernie.geckolib.renderer.GeoRenderer;
import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class Mle1934Layer extends GeoRenderLayer<Mle1934Entity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/sherman_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/sherman_e.png");
public Mle1934Layer(GeoRenderer<Mle1934Entity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.vehicle;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.MortarEntity;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -14,7 +14,7 @@ import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class MortarLayer extends GeoRenderLayer<MortarEntity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/mortar_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/mortar_e.png");
public MortarLayer(GeoRenderer<MortarEntity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.vehicle;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.vehicle.SpeedboatEntity;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -16,7 +16,7 @@ import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
import static com.atsuishio.superbwarfare.entity.vehicle.SpeedboatEntity.HEAT;
public class SpeedBoatHeatLayer extends GeoRenderLayer<SpeedboatEntity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/speedboat_heat.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/speedboat_heat.png");
public SpeedBoatHeatLayer(GeoRenderer<SpeedboatEntity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.vehicle;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.vehicle.SpeedboatEntity;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -14,7 +14,7 @@ import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class SpeedBoatLayer extends GeoRenderLayer<SpeedboatEntity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/speedboat_e.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/speedboat_e.png");
public SpeedBoatLayer(GeoRenderer<SpeedboatEntity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.vehicle;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.vehicle.SpeedboatEntity;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.blaze3d.vertex.VertexConsumer;
@ -14,7 +14,7 @@ import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class SpeedBoatPowerLayer extends GeoRenderLayer<SpeedboatEntity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/speedboat_power.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/speedboat_power.png");
public SpeedBoatPowerLayer(GeoRenderer<SpeedboatEntity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.layer.vehicle;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.client.ModRenderTypes;
import com.atsuishio.superbwarfare.entity.vehicle.Yx100Entity;
import com.mojang.blaze3d.vertex.PoseStack;
@ -15,7 +15,7 @@ import software.bernie.geckolib.renderer.layer.GeoRenderLayer;
public class Yx100GlowLayer extends GeoRenderLayer<Yx100Entity> {
private static final ResourceLocation LAYER = ModUtils.loc("textures/entity/yx_100_glow.png");
private static final ResourceLocation LAYER = Mod.loc("textures/entity/yx_100_glow.png");
public Yx100GlowLayer(GeoRenderer<Yx100Entity> entityRenderer) {
super(entityRenderer);

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.armor;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.armor.GeHelmetM35;
import net.minecraft.resources.ResourceLocation;
import software.bernie.geckolib.model.GeoModel;
@ -14,11 +14,11 @@ public class GeHelmetM35Model extends GeoModel<GeHelmetM35> {
@Override
public ResourceLocation getModelResource(GeHelmetM35 object) {
return ModUtils.loc("geo/ge_helmet_m_35.geo.json");
return Mod.loc("geo/ge_helmet_m_35.geo.json");
}
@Override
public ResourceLocation getTextureResource(GeHelmetM35 object) {
return ModUtils.loc("textures/armor/ge_helmet_m_35.png");
return Mod.loc("textures/armor/ge_helmet_m_35.png");
}
}

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.armor;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.armor.RuChest6b43;
import net.minecraft.resources.ResourceLocation;
import software.bernie.geckolib.model.GeoModel;
@ -14,11 +14,11 @@ public class RuChest6b43Model extends GeoModel<RuChest6b43> {
@Override
public ResourceLocation getModelResource(RuChest6b43 object) {
return ModUtils.loc("geo/ru_chest_6b43.geo.json");
return Mod.loc("geo/ru_chest_6b43.geo.json");
}
@Override
public ResourceLocation getTextureResource(RuChest6b43 object) {
return ModUtils.loc("textures/armor/ru_chest_6b43.png");
return Mod.loc("textures/armor/ru_chest_6b43.png");
}
}

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.armor;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.armor.RuHelmet6b47;
import net.minecraft.resources.ResourceLocation;
import software.bernie.geckolib.model.GeoModel;
@ -14,11 +14,11 @@ public class RuHelmet6b47Model extends GeoModel<RuHelmet6b47> {
@Override
public ResourceLocation getModelResource(RuHelmet6b47 object) {
return ModUtils.loc("geo/ru_helmet_6b47.geo.json");
return Mod.loc("geo/ru_helmet_6b47.geo.json");
}
@Override
public ResourceLocation getTextureResource(RuHelmet6b47 object) {
return ModUtils.loc("textures/armor/ru_helmet_6b47.png");
return Mod.loc("textures/armor/ru_helmet_6b47.png");
}
}

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.armor;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.armor.UsChestIotv;
import net.minecraft.resources.ResourceLocation;
import software.bernie.geckolib.model.GeoModel;
@ -14,11 +14,11 @@ public class UsChestIotvModel extends GeoModel<UsChestIotv> {
@Override
public ResourceLocation getModelResource(UsChestIotv object) {
return ModUtils.loc("geo/us_chest_iotv.geo.json");
return Mod.loc("geo/us_chest_iotv.geo.json");
}
@Override
public ResourceLocation getTextureResource(UsChestIotv object) {
return ModUtils.loc("textures/armor/us_chest_iotv.png");
return Mod.loc("textures/armor/us_chest_iotv.png");
}
}

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.armor;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.item.armor.UsHelmetPastg;
import net.minecraft.resources.ResourceLocation;
import software.bernie.geckolib.model.GeoModel;
@ -14,11 +14,11 @@ public class UsHelmetPastgModel extends GeoModel<UsHelmetPastg> {
@Override
public ResourceLocation getModelResource(UsHelmetPastg object) {
return ModUtils.loc("geo/us_helmet_pastg.geo.json");
return Mod.loc("geo/us_helmet_pastg.geo.json");
}
@Override
public ResourceLocation getTextureResource(UsHelmetPastg object) {
return ModUtils.loc("textures/armor/us_helmet_pastg.png");
return Mod.loc("textures/armor/us_helmet_pastg.png");
}
}

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.block;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.block.entity.ContainerBlockEntity;
import net.minecraft.resources.ResourceLocation;
import software.bernie.geckolib.model.GeoModel;
@ -9,16 +9,16 @@ public class ContainerBlockModel extends GeoModel<ContainerBlockEntity> {
@Override
public ResourceLocation getAnimationResource(ContainerBlockEntity animatable) {
return ModUtils.loc("animations/container.animation.json");
return Mod.loc("animations/container.animation.json");
}
@Override
public ResourceLocation getModelResource(ContainerBlockEntity animatable) {
return ModUtils.loc("geo/container.geo.json");
return Mod.loc("geo/container.geo.json");
}
@Override
public ResourceLocation getTextureResource(ContainerBlockEntity animatable) {
return ModUtils.loc("textures/block/container.png");
return Mod.loc("textures/block/container.png");
}
}

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.block;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.block.entity.FuMO25BlockEntity;
import net.minecraft.resources.ResourceLocation;
import software.bernie.geckolib.model.GeoModel;
@ -13,11 +13,11 @@ public class FuMO25Model extends GeoModel<FuMO25BlockEntity> {
@Override
public ResourceLocation getModelResource(FuMO25BlockEntity animatable) {
return ModUtils.loc("geo/fumo_25.geo.json");
return Mod.loc("geo/fumo_25.geo.json");
}
@Override
public ResourceLocation getTextureResource(FuMO25BlockEntity animatable) {
return ModUtils.loc("textures/block/fumo_25.png");
return Mod.loc("textures/block/fumo_25.png");
}
}

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.block;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.block.entity.SmallContainerBlockEntity;
import net.minecraft.resources.ResourceLocation;
import software.bernie.geckolib.model.GeoModel;
@ -9,19 +9,19 @@ public class SmallContainerBlockModel extends GeoModel<SmallContainerBlockEntity
@Override
public ResourceLocation getAnimationResource(SmallContainerBlockEntity animatable) {
return ModUtils.loc("animations/small_container.animation.json");
return Mod.loc("animations/small_container.animation.json");
}
@Override
public ResourceLocation getModelResource(SmallContainerBlockEntity animatable) {
return ModUtils.loc("geo/small_container.geo.json");
return Mod.loc("geo/small_container.geo.json");
}
@Override
public ResourceLocation getTextureResource(SmallContainerBlockEntity animatable) {
if (animatable.lootTableSeed != 0L && animatable.lootTableSeed % 205 == 0) {
return ModUtils.loc("textures/block/small_container_sui.png");
return Mod.loc("textures/block/small_container_sui.png");
}
return ModUtils.loc("textures/block/small_container.png");
return Mod.loc("textures/block/small_container.png");
}
}

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.entity;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.vehicle.Ah6Entity;
import net.minecraft.client.Minecraft;
import net.minecraft.resources.ResourceLocation;
@ -26,18 +26,18 @@ public class Ah6Model extends GeoModel<Ah6Entity> {
}
if (distance < 32) {
return ModUtils.loc("geo/ah_6.geo.json");
return Mod.loc("geo/ah_6.geo.json");
} else if (distance < 64) {
return ModUtils.loc("geo/ah_6.lod1.geo.json");
return Mod.loc("geo/ah_6.lod1.geo.json");
} else if (distance < 96) {
return ModUtils.loc("geo/ah_6.lod2.geo.json");
return Mod.loc("geo/ah_6.lod2.geo.json");
} else {
return ModUtils.loc("geo/ah_6.lod3.geo.json");
return Mod.loc("geo/ah_6.lod3.geo.json");
}
}
@Override
public ResourceLocation getTextureResource(Ah6Entity entity) {
return ModUtils.loc("textures/entity/ah_6.png");
return Mod.loc("textures/entity/ah_6.png");
}
}

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.entity;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.config.server.VehicleConfig;
import com.atsuishio.superbwarfare.entity.vehicle.AnnihilatorEntity;
import net.minecraft.client.Minecraft;
@ -19,7 +19,7 @@ public class AnnihilatorModel extends GeoModel<AnnihilatorEntity> {
@Override
public ResourceLocation getAnimationResource(AnnihilatorEntity entity) {
return ModUtils.loc("animations/annihilator.animation.json");
return Mod.loc("animations/annihilator.animation.json");
}
@Override
@ -33,15 +33,15 @@ public class AnnihilatorModel extends GeoModel<AnnihilatorEntity> {
}
if (distance < 64) {
return ModUtils.loc("geo/annihilator.geo.json");
return Mod.loc("geo/annihilator.geo.json");
} else {
return ModUtils.loc("geo/annihilator.lod1.geo.json");
return Mod.loc("geo/annihilator.lod1.geo.json");
}
}
@Override
public ResourceLocation getTextureResource(AnnihilatorEntity entity) {
return ModUtils.loc("textures/entity/annihilator.png");
return Mod.loc("textures/entity/annihilator.png");
}
@Override

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.entity;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.vehicle.Bmp2Entity;
import net.minecraft.resources.ResourceLocation;
import software.bernie.geckolib.model.GeoModel;
@ -9,12 +9,12 @@ public class Bmp2Model extends GeoModel<Bmp2Entity> {
@Override
public ResourceLocation getAnimationResource(Bmp2Entity entity) {
return ModUtils.loc("animations/lav.animation.json");
return Mod.loc("animations/lav.animation.json");
}
@Override
public ResourceLocation getModelResource(Bmp2Entity entity) {
return ModUtils.loc("geo/bmp2.geo.json");
return Mod.loc("geo/bmp2.geo.json");
// Player player = Minecraft.getInstance().player;
//
// int distance = 0;
@ -32,6 +32,6 @@ public class Bmp2Model extends GeoModel<Bmp2Entity> {
@Override
public ResourceLocation getTextureResource(Bmp2Entity entity) {
return ModUtils.loc("textures/entity/bmp2.png");
return Mod.loc("textures/entity/bmp2.png");
}
}

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.entity;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.projectile.C4Entity;
import net.minecraft.resources.ResourceLocation;
import software.bernie.geckolib.model.GeoModel;
@ -11,20 +11,20 @@ public class C4Model extends GeoModel<C4Entity> {
@Override
public ResourceLocation getAnimationResource(C4Entity entity) {
return ModUtils.loc("animations/c4.animation.json");
return Mod.loc("animations/c4.animation.json");
}
@Override
public ResourceLocation getModelResource(C4Entity entity) {
return ModUtils.loc("geo/c4.geo.json");
return Mod.loc("geo/c4.geo.json");
}
@Override
public ResourceLocation getTextureResource(C4Entity entity) {
UUID uuid = entity.getUUID();
if (uuid.getLeastSignificantBits() % 114 == 0) {
return ModUtils.loc("textures/item/c4_alter.png");
return Mod.loc("textures/item/c4_alter.png");
}
return ModUtils.loc("textures/item/c4.png");
return Mod.loc("textures/item/c4.png");
}
}

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.entity;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.projectile.CannonShellEntity;
import net.minecraft.resources.ResourceLocation;
import software.bernie.geckolib.animation.AnimationState;
@ -11,17 +11,17 @@ public class CannonShellEntityModel extends GeoModel<CannonShellEntity> {
@Override
public ResourceLocation getAnimationResource(CannonShellEntity entity) {
return ModUtils.loc("animations/cannon_shell.animation.json");
return Mod.loc("animations/cannon_shell.animation.json");
}
@Override
public ResourceLocation getModelResource(CannonShellEntity entity) {
return ModUtils.loc("geo/cannon_shell.geo.json");
return Mod.loc("geo/cannon_shell.geo.json");
}
@Override
public ResourceLocation getTextureResource(CannonShellEntity entity) {
return ModUtils.loc("textures/entity/cannon_shell.png");
return Mod.loc("textures/entity/cannon_shell.png");
}
@Override

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.entity;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.ClaymoreEntity;
import net.minecraft.resources.ResourceLocation;
import software.bernie.geckolib.model.GeoModel;
@ -11,20 +11,20 @@ public class ClaymoreModel extends GeoModel<ClaymoreEntity> {
@Override
public ResourceLocation getAnimationResource(ClaymoreEntity entity) {
return ModUtils.loc("animations/claymore.animation.json");
return Mod.loc("animations/claymore.animation.json");
}
@Override
public ResourceLocation getModelResource(ClaymoreEntity entity) {
return ModUtils.loc("geo/claymore.geo.json");
return Mod.loc("geo/claymore.geo.json");
}
@Override
public ResourceLocation getTextureResource(ClaymoreEntity entity) {
UUID uuid = entity.getUUID();
if (uuid.getLeastSignificantBits() % 514 == 0) {
return ModUtils.loc("textures/entity/claymore_alter.png");
return Mod.loc("textures/entity/claymore_alter.png");
}
return ModUtils.loc("textures/entity/claymore.png");
return Mod.loc("textures/entity/claymore.png");
}
}

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.entity;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.vehicle.DroneEntity;
import net.minecraft.resources.ResourceLocation;
import software.bernie.geckolib.model.GeoModel;
@ -8,16 +8,16 @@ import software.bernie.geckolib.model.GeoModel;
public class DroneModel extends GeoModel<DroneEntity> {
@Override
public ResourceLocation getAnimationResource(DroneEntity entity) {
return ModUtils.loc("animations/drone.animation.json");
return Mod.loc("animations/drone.animation.json");
}
@Override
public ResourceLocation getModelResource(DroneEntity entity) {
return ModUtils.loc("geo/drone.geo.json");
return Mod.loc("geo/drone.geo.json");
}
@Override
public ResourceLocation getTextureResource(DroneEntity entity) {
return ModUtils.loc("textures/entity/drone.png");
return Mod.loc("textures/entity/drone.png");
}
}

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.entity;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.projectile.GunGrenadeEntity;
import net.minecraft.resources.ResourceLocation;
import software.bernie.geckolib.animation.AnimationState;
@ -11,17 +11,17 @@ public class GunGrenadeModel extends GeoModel<GunGrenadeEntity> {
@Override
public ResourceLocation getAnimationResource(GunGrenadeEntity entity) {
return ModUtils.loc("animations/cannon_shell.animation.json");
return Mod.loc("animations/cannon_shell.animation.json");
}
@Override
public ResourceLocation getModelResource(GunGrenadeEntity entity) {
return ModUtils.loc("geo/cannon_shell.geo.json");
return Mod.loc("geo/cannon_shell.geo.json");
}
@Override
public ResourceLocation getTextureResource(GunGrenadeEntity entity) {
return ModUtils.loc("textures/entity/cannon_shell.png");
return Mod.loc("textures/entity/cannon_shell.png");
}
@Override

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.entity;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.projectile.HandGrenadeEntity;
import net.minecraft.resources.ResourceLocation;
import software.bernie.geckolib.model.GeoModel;
@ -14,11 +14,11 @@ public class HandGrenadeEntityModel extends GeoModel<HandGrenadeEntity> {
@Override
public ResourceLocation getModelResource(HandGrenadeEntity entity) {
return ModUtils.loc("geo/hand_grenade.geo.json");
return Mod.loc("geo/hand_grenade.geo.json");
}
@Override
public ResourceLocation getTextureResource(HandGrenadeEntity entity) {
return ModUtils.loc("textures/entity/hand_grenade.png");
return Mod.loc("textures/entity/hand_grenade.png");
}
}

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.entity;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.projectile.HeliRocketEntity;
import net.minecraft.resources.ResourceLocation;
import software.bernie.geckolib.model.GeoModel;
@ -9,16 +9,16 @@ public class HeliRocketModel extends GeoModel<HeliRocketEntity> {
@Override
public ResourceLocation getAnimationResource(HeliRocketEntity entity) {
return ModUtils.loc("animations/rpg_rocket.animation.json");
return Mod.loc("animations/rpg_rocket.animation.json");
}
@Override
public ResourceLocation getModelResource(HeliRocketEntity entity) {
return ModUtils.loc("geo/heli_rocket.geo.json");
return Mod.loc("geo/heli_rocket.geo.json");
}
@Override
public ResourceLocation getTextureResource(HeliRocketEntity entity) {
return ModUtils.loc("textures/entity/heli_rocket.png");
return Mod.loc("textures/entity/heli_rocket.png");
}
}

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.entity;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.projectile.JavelinMissileEntity;
import net.minecraft.resources.ResourceLocation;
import software.bernie.geckolib.model.GeoModel;
@ -9,16 +9,16 @@ public class JavelinMissileModel extends GeoModel<JavelinMissileEntity> {
@Override
public ResourceLocation getAnimationResource(JavelinMissileEntity entity) {
return ModUtils.loc("animations/javelin_missile.animation.json");
return Mod.loc("animations/javelin_missile.animation.json");
}
@Override
public ResourceLocation getModelResource(JavelinMissileEntity entity) {
return ModUtils.loc("geo/javelin_missile.geo.json");
return Mod.loc("geo/javelin_missile.geo.json");
}
@Override
public ResourceLocation getTextureResource(JavelinMissileEntity entity) {
return ModUtils.loc("textures/entity/javelin_missile.png");
return Mod.loc("textures/entity/javelin_missile.png");
}
}

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.entity;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.vehicle.LaserTowerEntity;
import net.minecraft.client.Minecraft;
import net.minecraft.resources.ResourceLocation;
@ -15,7 +15,7 @@ public class LaserTowerModel extends GeoModel<LaserTowerEntity> {
@Override
public ResourceLocation getAnimationResource(LaserTowerEntity entity) {
return ModUtils.loc("animations/laser_tower.animation.json");
return Mod.loc("animations/laser_tower.animation.json");
}
@Override
@ -29,17 +29,17 @@ public class LaserTowerModel extends GeoModel<LaserTowerEntity> {
}
if (distance < 24 || player.isScoping()) {
return ModUtils.loc("geo/laser_tower.geo.json");
return Mod.loc("geo/laser_tower.geo.json");
} else if (distance < 48) {
return ModUtils.loc("geo/laser_tower.lod1.geo.json");
return Mod.loc("geo/laser_tower.lod1.geo.json");
} else {
return ModUtils.loc("geo/laser_tower.lod2.geo.json");
return Mod.loc("geo/laser_tower.lod2.geo.json");
}
}
@Override
public ResourceLocation getTextureResource(LaserTowerEntity entity) {
return ModUtils.loc("textures/entity/laser_tower.png");
return Mod.loc("textures/entity/laser_tower.png");
}
@Override

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.entity;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.vehicle.Lav150Entity;
import net.minecraft.resources.ResourceLocation;
import software.bernie.geckolib.model.GeoModel;
@ -9,12 +9,12 @@ public class Lav150Model extends GeoModel<Lav150Entity> {
@Override
public ResourceLocation getAnimationResource(Lav150Entity entity) {
return ModUtils.loc("animations/lav.animation.json");
return Mod.loc("animations/lav.animation.json");
}
@Override
public ResourceLocation getModelResource(Lav150Entity entity) {
return ModUtils.loc("geo/lav150.geo.json");
return Mod.loc("geo/lav150.geo.json");
// Player player = Minecraft.getInstance().player;
//
// int distance = 0;
@ -32,6 +32,6 @@ public class Lav150Model extends GeoModel<Lav150Entity> {
@Override
public ResourceLocation getTextureResource(Lav150Entity entity) {
return ModUtils.loc("textures/entity/lav150.png");
return Mod.loc("textures/entity/lav150.png");
}
}

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.entity;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.vehicle.Mk42Entity;
import net.minecraft.client.Minecraft;
import net.minecraft.resources.ResourceLocation;
@ -16,7 +16,7 @@ public class Mk42Model extends GeoModel<Mk42Entity> {
@Override
public ResourceLocation getAnimationResource(Mk42Entity entity) {
return ModUtils.loc("animations/mk_42.animation.json");
return Mod.loc("animations/mk_42.animation.json");
}
@Override
@ -30,17 +30,17 @@ public class Mk42Model extends GeoModel<Mk42Entity> {
}
if (distance < 32) {
return ModUtils.loc("geo/sherman.geo.json");
return Mod.loc("geo/sherman.geo.json");
} else if (distance < 64) {
return ModUtils.loc("geo/sherman_lod1.geo.json");
return Mod.loc("geo/sherman_lod1.geo.json");
} else {
return ModUtils.loc("geo/sherman_lod2.geo.json");
return Mod.loc("geo/sherman_lod2.geo.json");
}
}
@Override
public ResourceLocation getTextureResource(Mk42Entity entity) {
return ModUtils.loc("textures/entity/mk42.png");
return Mod.loc("textures/entity/mk42.png");
}
@Override

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.entity;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.vehicle.Mle1934Entity;
import net.minecraft.client.Minecraft;
import net.minecraft.resources.ResourceLocation;
@ -16,7 +16,7 @@ public class Mle1934Model extends GeoModel<Mle1934Entity> {
@Override
public ResourceLocation getAnimationResource(Mle1934Entity entity) {
return ModUtils.loc("animations/mle1934.animation.json");
return Mod.loc("animations/mle1934.animation.json");
}
@Override
@ -29,15 +29,15 @@ public class Mle1934Model extends GeoModel<Mle1934Entity> {
}
if (distance < 32) {
return ModUtils.loc("geo/mle1934.geo.json");
return Mod.loc("geo/mle1934.geo.json");
} else {
return ModUtils.loc("geo/mle1934_lod1.geo.json");
return Mod.loc("geo/mle1934_lod1.geo.json");
}
}
@Override
public ResourceLocation getTextureResource(Mle1934Entity entity) {
return ModUtils.loc("textures/entity/mle1934.png");
return Mod.loc("textures/entity/mle1934.png");
}
@Override

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.entity;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.MortarEntity;
import net.minecraft.resources.ResourceLocation;
import net.minecraft.util.Mth;
@ -14,17 +14,17 @@ public class MortarModel extends GeoModel<MortarEntity> {
@Override
public ResourceLocation getAnimationResource(MortarEntity entity) {
return ModUtils.loc("animations/mortar.animation.json");
return Mod.loc("animations/mortar.animation.json");
}
@Override
public ResourceLocation getModelResource(MortarEntity entity) {
return ModUtils.loc("geo/mortar.geo.json");
return Mod.loc("geo/mortar.geo.json");
}
@Override
public ResourceLocation getTextureResource(MortarEntity entity) {
return ModUtils.loc("textures/entity/mortar.png");
return Mod.loc("textures/entity/mortar.png");
}
@Override

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.entity;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.projectile.MortarShellEntity;
import net.minecraft.resources.ResourceLocation;
import software.bernie.geckolib.model.GeoModel;
@ -14,11 +14,11 @@ public class MortarShellEntityModel extends GeoModel<MortarShellEntity> {
@Override
public ResourceLocation getModelResource(MortarShellEntity entity) {
return ModUtils.loc("geo/mortar_shell.geo.json");
return Mod.loc("geo/mortar_shell.geo.json");
}
@Override
public ResourceLocation getTextureResource(MortarShellEntity entity) {
return ModUtils.loc("textures/entity/mortar.png");
return Mod.loc("textures/entity/mortar.png");
}
}

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.entity;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.projectile.ProjectileEntity;
import com.atsuishio.superbwarfare.entity.vehicle.base.ArmedVehicleEntity;
import com.atsuishio.superbwarfare.event.ClientEventHandler;
@ -23,7 +23,7 @@ public class ProjectileEntityModel extends GeoModel<ProjectileEntity> {
public ResourceLocation getModelResource(ProjectileEntity entity) {
Player player = Minecraft.getInstance().player;
if (player == null) {
return ModUtils.loc("geo/projectile_entity2.geo.json");
return Mod.loc("geo/projectile_entity2.geo.json");
}
if ((ClientEventHandler.zoom && !player.getMainHandItem().is(ModItems.MINIGUN.get()))
@ -31,15 +31,15 @@ public class ProjectileEntityModel extends GeoModel<ProjectileEntity> {
|| player.getMainHandItem().is(ModItems.GLOCK_18.get())
|| player.getMainHandItem().is(ModItems.BOCEK.get())
|| (player.getVehicle() instanceof ArmedVehicleEntity)) {
return ModUtils.loc("geo/projectile_entity.geo.json");
return Mod.loc("geo/projectile_entity.geo.json");
} else {
return ModUtils.loc("geo/projectile_entity2.geo.json");
return Mod.loc("geo/projectile_entity2.geo.json");
}
}
@Override
public ResourceLocation getTextureResource(ProjectileEntity entity) {
return ModUtils.loc("textures/entity/empty.png");
return Mod.loc("textures/entity/empty.png");
}
@Override

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.entity;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.projectile.RgoGrenadeEntity;
import net.minecraft.resources.ResourceLocation;
import software.bernie.geckolib.model.GeoModel;
@ -14,11 +14,11 @@ public class RgoGrenadeEntityModel extends GeoModel<RgoGrenadeEntity> {
@Override
public ResourceLocation getModelResource(RgoGrenadeEntity entity) {
return ModUtils.loc("geo/rgo_grenade.geo.json");
return Mod.loc("geo/rgo_grenade.geo.json");
}
@Override
public ResourceLocation getTextureResource(RgoGrenadeEntity entity) {
return ModUtils.loc("textures/item/rgo_grenade.png");
return Mod.loc("textures/item/rgo_grenade.png");
}
}

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.entity;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.projectile.RpgRocketEntity;
import net.minecraft.resources.ResourceLocation;
import software.bernie.geckolib.model.GeoModel;
@ -9,16 +9,16 @@ public class RpgRocketModel extends GeoModel<RpgRocketEntity> {
@Override
public ResourceLocation getAnimationResource(RpgRocketEntity entity) {
return ModUtils.loc("animations/rpg_rocket.animation.json");
return Mod.loc("animations/rpg_rocket.animation.json");
}
@Override
public ResourceLocation getModelResource(RpgRocketEntity entity) {
return ModUtils.loc("geo/rpg_rocket.geo.json");
return Mod.loc("geo/rpg_rocket.geo.json");
}
@Override
public ResourceLocation getTextureResource(RpgRocketEntity entity) {
return ModUtils.loc("textures/entity/rpg_rocket.png");
return Mod.loc("textures/entity/rpg_rocket.png");
}
}

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.entity;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.SenpaiEntity;
import net.minecraft.resources.ResourceLocation;
import software.bernie.geckolib.model.GeoModel;
@ -9,16 +9,16 @@ public class SenpaiModel extends GeoModel<SenpaiEntity> {
@Override
public ResourceLocation getAnimationResource(SenpaiEntity entity) {
return ModUtils.loc("animations/senpai.animation.json");
return Mod.loc("animations/senpai.animation.json");
}
@Override
public ResourceLocation getModelResource(SenpaiEntity entity) {
return ModUtils.loc("geo/senpai.geo.json");
return Mod.loc("geo/senpai.geo.json");
}
@Override
public ResourceLocation getTextureResource(SenpaiEntity entity) {
return ModUtils.loc("textures/entity/senpai.png");
return Mod.loc("textures/entity/senpai.png");
}
}

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.entity;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.projectile.SmallCannonShellEntity;
import net.minecraft.resources.ResourceLocation;
import software.bernie.geckolib.animation.AnimationState;
@ -11,17 +11,17 @@ public class SmallCannonShellModel extends GeoModel<SmallCannonShellEntity> {
@Override
public ResourceLocation getAnimationResource(SmallCannonShellEntity entity) {
return ModUtils.loc("animations/cannon_shell.animation.json");
return Mod.loc("animations/cannon_shell.animation.json");
}
@Override
public ResourceLocation getModelResource(SmallCannonShellEntity entity) {
return ModUtils.loc("geo/cannon_shell.geo.json");
return Mod.loc("geo/cannon_shell.geo.json");
}
@Override
public ResourceLocation getTextureResource(SmallCannonShellEntity entity) {
return ModUtils.loc("textures/entity/cannon_shell.png");
return Mod.loc("textures/entity/cannon_shell.png");
}
@Override

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.entity;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.vehicle.SpeedboatEntity;
import net.minecraft.client.Minecraft;
import net.minecraft.resources.ResourceLocation;
@ -11,7 +11,7 @@ public class SpeedboatModel extends GeoModel<SpeedboatEntity> {
@Override
public ResourceLocation getAnimationResource(SpeedboatEntity entity) {
return ModUtils.loc("animations/speedboat.animation.json");
return Mod.loc("animations/speedboat.animation.json");
}
@Override
@ -25,14 +25,14 @@ public class SpeedboatModel extends GeoModel<SpeedboatEntity> {
}
if (distance < 32) {
return ModUtils.loc("geo/speedboat.geo.json");
return Mod.loc("geo/speedboat.geo.json");
} else {
return ModUtils.loc("geo/speedboat.lod1.geo.json");
return Mod.loc("geo/speedboat.lod1.geo.json");
}
}
@Override
public ResourceLocation getTextureResource(SpeedboatEntity entity) {
return ModUtils.loc("textures/entity/speedboat.png");
return Mod.loc("textures/entity/speedboat.png");
}
}

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.entity;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.TargetEntity;
import net.minecraft.resources.ResourceLocation;
import software.bernie.geckolib.model.GeoModel;
@ -9,16 +9,16 @@ public class TargetModel extends GeoModel<TargetEntity> {
@Override
public ResourceLocation getAnimationResource(TargetEntity entity) {
return ModUtils.loc("animations/target.animation.json");
return Mod.loc("animations/target.animation.json");
}
@Override
public ResourceLocation getModelResource(TargetEntity entity) {
return ModUtils.loc("geo/target.geo.json");
return Mod.loc("geo/target.geo.json");
}
@Override
public ResourceLocation getTextureResource(TargetEntity entity) {
return ModUtils.loc("textures/entity/target.png");
return Mod.loc("textures/entity/target.png");
}
}

View file

@ -1,6 +1,6 @@
package com.atsuishio.superbwarfare.client.model.entity;
import com.atsuishio.superbwarfare.ModUtils;
import com.atsuishio.superbwarfare.Mod;
import com.atsuishio.superbwarfare.entity.projectile.TaserBulletEntity;
import net.minecraft.resources.ResourceLocation;
import software.bernie.geckolib.model.GeoModel;
@ -14,11 +14,11 @@ public class TaserBulletProjectileModel extends GeoModel<TaserBulletEntity> {
@Override
public ResourceLocation getModelResource(TaserBulletEntity entity) {
return ModUtils.loc("geo/taser_rod.geo.json");
return Mod.loc("geo/taser_rod.geo.json");
}
@Override
public ResourceLocation getTextureResource(TaserBulletEntity entity) {
return ModUtils.loc("textures/entity/taser_rod.png");
return Mod.loc("textures/entity/taser_rod.png");
}
}

Some files were not shown because too many files have changed in this diff Show more