23 lines
1 KiB
Java
23 lines
1 KiB
Java
package net.minecraft.client.resources;
|
|
|
|
import net.fabricmc.api.EnvType;
|
|
import net.fabricmc.api.Environment;
|
|
import net.minecraft.client.renderer.texture.MissingTextureAtlasSprite;
|
|
import net.minecraft.client.renderer.texture.TextureAtlasSprite;
|
|
import net.minecraft.client.renderer.texture.TextureManager;
|
|
import net.minecraft.client.resources.model.AtlasIds;
|
|
import net.minecraft.core.Holder;
|
|
import net.minecraft.resources.ResourceKey;
|
|
import net.minecraft.resources.ResourceLocation;
|
|
import net.minecraft.world.effect.MobEffect;
|
|
|
|
@Environment(EnvType.CLIENT)
|
|
public class MobEffectTextureManager extends TextureAtlasHolder {
|
|
public MobEffectTextureManager(TextureManager textureManager) {
|
|
super(textureManager, ResourceLocation.withDefaultNamespace("textures/atlas/mob_effects.png"), AtlasIds.MOB_EFFECTS);
|
|
}
|
|
|
|
public TextureAtlasSprite get(Holder<MobEffect> effect) {
|
|
return this.getSprite((ResourceLocation)effect.unwrapKey().map(ResourceKey::location).orElseGet(MissingTextureAtlasSprite::getLocation));
|
|
}
|
|
}
|