for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
package de.pewpewproject.lasertag.entity.render.armor;
import de.pewpewproject.lasertag.LasertagMod;
import de.pewpewproject.lasertag.item.LasertagVestItem;
import net.minecraft.util.Identifier;
import software.bernie.geckolib3.model.AnimatedGeoModel;
/**
* Model for the lasertag vests lights
*
* @author Étienne Muser
*/
public class LasertagVestLightsModel extends AnimatedGeoModel<LasertagVestItem> {
@Override
public Identifier getModelResource(LasertagVestItem object) {
return new Identifier(LasertagMod.ID, "geo/lasertag_vest_lights.geo.json");
}
public Identifier getTextureResource(LasertagVestItem object) {
return new Identifier(LasertagMod.ID, "textures/armor/lasertag_vest_lights.png");
public Identifier getAnimationResource(LasertagVestItem animatable) {
return new Identifier(LasertagMod.ID, "animations/idle_animation.json");