December 2014 files

This commit is contained in:
Loki Rautio
2026-03-01 11:00:23 -06:00
parent b691c43c44
commit 8fd3ac6e37
2049 changed files with 260190 additions and 134787 deletions

View File

@@ -8,8 +8,6 @@
#include "JavaMath.h"
#include "EyeOfEnderSignal.h"
void EyeOfEnderSignal::_init()
{
// 4J Stu - This function call had to be moved here from the Entity ctor to ensure that
@@ -23,7 +21,6 @@ void EyeOfEnderSignal::_init()
surviveAfterDeath = false;
}
EyeOfEnderSignal::EyeOfEnderSignal(Level *level) : Entity(level)
{
_init();
@@ -34,7 +31,6 @@ void EyeOfEnderSignal::defineSynchedData()
{
}
bool EyeOfEnderSignal::shouldRenderAtSqrDistance(double distance)
{
double size = bb->getSize() * 4;
@@ -49,8 +45,8 @@ EyeOfEnderSignal::EyeOfEnderSignal(Level *level, double x, double y, double z) :
setSize(0.25f, 0.25f);
this->setPos(x, y, z);
this->heightOffset = 0;
setPos(x, y, z);
heightOffset = 0;
}
void EyeOfEnderSignal::signalTo(double tx, int ty, double tz)
@@ -85,8 +81,8 @@ void EyeOfEnderSignal::lerpMotion(double xd, double yd, double zd)
if (xRotO == 0 && yRotO == 0)
{
float sd = (float) sqrt(xd * xd + zd * zd);
yRotO = this->yRot = (float) (atan2(xd, zd) * 180 / PI);
xRotO = this->xRot = (float) (atan2(yd, (double)sd) * 180 / PI);
yRotO = yRot = (float) (atan2(xd, zd) * 180 / PI);
xRotO = xRot = (float) (atan2(yd, (double)sd) * 180 / PI);
}
}