Files
BluTac10-Xbox_Neo/Minecraft.Client/MobRenderer.h
2026-04-10 14:03:32 +02:00

26 lines
964 B
C++

#pragma once
#include "LivingEntityRenderer.h"
class Mob;
using namespace std;
// This was used in MobRenderer but lots of code moved to LivingEntity and I haven't put this back yet
/*#define PLAYER_NAME_READABLE_FULLSCREEN 16
#define PLAYER_NAME_READABLE_DISTANCE_SPLITSCREEN 8
#define PLAYER_NAME_READABLE_DISTANCE_SD 8*/
// 4J - this used to be a generic : public class MobRenderer<T extends Mob> extends EntityRenderer<T>
class MobRenderer : public LivingEntityRenderer
{
public:
MobRenderer(Model *model, float shadow);
virtual void render(shared_ptr<Entity> mob, double x, double y, double z, float rot, float a);
virtual bool shouldRender(shared_ptr<Entity> entity, float camX, float camY, float camZ) override;
protected:
virtual bool shouldShowName(shared_ptr<LivingEntity> mob);
virtual void renderLeash(shared_ptr<Mob> entity, double x, double y, double z, float rot, float a);
private:
double lerp(double prev, double next, double a);
};