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