1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-08-06 22:30:20 +00:00

Remove some old/unused cruft

This commit is contained in:
fgenesis 2017-08-09 21:01:56 +02:00
parent fe93c91eca
commit bd0e16774f
3 changed files with 0 additions and 27 deletions

View file

@ -232,16 +232,6 @@ void ParticleEffect::bankLoad(const std::string &file, const std::string &path)
inf >> tmp; inf >> tmp;
inf >> currentEmitter->data.texture; inf >> currentEmitter->data.texture;
} }
else if (token == "AvatarVelocity")
{
inf >> tmp;
inf >> currentEmitter->data.avatarVelocity;
}
else if (token == "AlphaModTimesVel")
{
inf >> tmp;
inf >> currentEmitter->data.alphaModTimesVel;
}
else if (token == "RandomScale") else if (token == "RandomScale")
{ {
inf >> tmp; inf >> tmp;
@ -358,16 +348,6 @@ void ParticleEffect::bankLoad(const std::string &file, const std::string &path)
inf >> tmp; inf >> tmp;
inf >> currentEmitter->data.life; inf >> currentEmitter->data.life;
} }
else if (token == "GroupRender")
{
inf >> tmp;
inf >> currentEmitter->data.groupRender;
}
else if (token == "Shape")
{
inf >> tmp;
inf >> tmp;
}
else if (token == "Suck") else if (token == "Suck")
{ {
inf >> tmp; inf >> tmp;

View file

@ -41,7 +41,6 @@ struct SpawnParticleData
int flipH, flipV; int flipH, flipV;
SpawnArea spawnArea; SpawnArea spawnArea;
float avatarVelocity;
float updateMultiplier; float updateMultiplier;
InterpolatedVector velocityMagnitude; InterpolatedVector velocityMagnitude;
@ -57,8 +56,6 @@ struct SpawnParticleData
bool didOne; bool didOne;
int justOne; int justOne;
int alphaModTimesVel;
int copyParentRotation, copyParentFlip; int copyParentRotation, copyParentFlip;
bool useSpawnRate; bool useSpawnRate;
bool calculateVelocityToCenter; bool calculateVelocityToCenter;
@ -76,7 +73,6 @@ struct SpawnParticleData
bool inheritAlpha; bool inheritAlpha;
float lastDTDifference; float lastDTDifference;
int groupRender;
int influenced; int influenced;
std::string deathPrt; std::string deathPrt;

View file

@ -25,14 +25,12 @@ SpawnParticleData::SpawnParticleData()
suckIndex = -1; suckIndex = -1;
suckStr = 0; suckStr = 0;
alphaModTimesVel = 0;
randomScale1 = 1; randomScale1 = 1;
randomScale2 = 1; randomScale2 = 1;
randomAlphaMod1 = 1; randomAlphaMod1 = 1;
randomAlphaMod2 = 1; randomAlphaMod2 = 1;
influenced = 0; influenced = 0;
spawnLocal = false; spawnLocal = false;
avatarVelocity = 0;
useSpawnRate = false; useSpawnRate = false;
counter = 0; counter = 0;
life = 1; life = 1;
@ -67,7 +65,6 @@ SpawnParticleData::SpawnParticleData()
justOne = didOne = false; justOne = didOne = false;
flipH = flipV = 0; flipH = flipV = 0;
spawnTimeOffset = 0; spawnTimeOffset = 0;
groupRender = 0;
pauseLevel = 0; pauseLevel = 0;
copyParentFlip = 0; copyParentFlip = 0;
inheritColor = false; inheritColor = false;