Total Complexity | 3 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | package de.pewpewproject.lasertag.entity.render.armor; |
||
13 | public class LasertagVestLightsModel extends AnimatedGeoModel<LasertagVestItem> { |
||
14 | @Override |
||
15 | public Identifier getModelResource(LasertagVestItem object) { |
||
16 | return new Identifier(LasertagMod.ID, "geo/lasertag_vest_lights.geo.json"); |
||
17 | } |
||
18 | |||
19 | @Override |
||
20 | public Identifier getTextureResource(LasertagVestItem object) { |
||
21 | return new Identifier(LasertagMod.ID, "textures/armor/lasertag_vest_lights.png"); |
||
22 | } |
||
23 | |||
24 | @Override |
||
25 | public Identifier getAnimationResource(LasertagVestItem animatable) { |
||
26 | return new Identifier(LasertagMod.ID, "animations/idle_animation.json"); |
||
27 | } |
||
29 |