Spaces:
Build error
Build error
File size: 1,062 Bytes
d46f4a3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
package net.minecraft.client.model.geom;
import com.google.common.collect.ImmutableMap;
import java.util.Map;
import net.minecraft.client.model.geom.builders.LayerDefinition;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
@OnlyIn(Dist.CLIENT)
public class EntityModelSet {
public static final EntityModelSet EMPTY = new EntityModelSet(Map.of());
private final Map<ModelLayerLocation, LayerDefinition> roots;
public EntityModelSet(Map<ModelLayerLocation, LayerDefinition> p_378805_) {
this.roots = p_378805_;
}
public ModelPart bakeLayer(ModelLayerLocation p_171104_) {
LayerDefinition layerdefinition = this.roots.get(p_171104_);
if (layerdefinition == null) {
throw new IllegalArgumentException("No model for layer " + p_171104_);
} else {
return layerdefinition.bakeRoot();
}
}
public static EntityModelSet vanilla() {
return new EntityModelSet(ImmutableMap.copyOf(LayerDefinitions.createRoots()));
}
} |