mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-29 03:33:48 +00:00
Remove some old/unused cruft
This commit is contained in:
parent
fe93c91eca
commit
bd0e16774f
3 changed files with 0 additions and 27 deletions
|
@ -232,16 +232,6 @@ void ParticleEffect::bankLoad(const std::string &file, const std::string &path)
|
|||
inf >> tmp;
|
||||
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")
|
||||
{
|
||||
inf >> tmp;
|
||||
|
@ -358,16 +348,6 @@ void ParticleEffect::bankLoad(const std::string &file, const std::string &path)
|
|||
inf >> tmp;
|
||||
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")
|
||||
{
|
||||
inf >> tmp;
|
||||
|
|
|
@ -41,7 +41,6 @@ struct SpawnParticleData
|
|||
int flipH, flipV;
|
||||
SpawnArea spawnArea;
|
||||
|
||||
float avatarVelocity;
|
||||
float updateMultiplier;
|
||||
|
||||
InterpolatedVector velocityMagnitude;
|
||||
|
@ -57,8 +56,6 @@ struct SpawnParticleData
|
|||
bool didOne;
|
||||
int justOne;
|
||||
|
||||
int alphaModTimesVel;
|
||||
|
||||
int copyParentRotation, copyParentFlip;
|
||||
bool useSpawnRate;
|
||||
bool calculateVelocityToCenter;
|
||||
|
@ -76,7 +73,6 @@ struct SpawnParticleData
|
|||
bool inheritAlpha;
|
||||
|
||||
float lastDTDifference;
|
||||
int groupRender;
|
||||
int influenced;
|
||||
std::string deathPrt;
|
||||
|
||||
|
|
|
@ -25,14 +25,12 @@ SpawnParticleData::SpawnParticleData()
|
|||
suckIndex = -1;
|
||||
suckStr = 0;
|
||||
|
||||
alphaModTimesVel = 0;
|
||||
randomScale1 = 1;
|
||||
randomScale2 = 1;
|
||||
randomAlphaMod1 = 1;
|
||||
randomAlphaMod2 = 1;
|
||||
influenced = 0;
|
||||
spawnLocal = false;
|
||||
avatarVelocity = 0;
|
||||
useSpawnRate = false;
|
||||
counter = 0;
|
||||
life = 1;
|
||||
|
@ -67,7 +65,6 @@ SpawnParticleData::SpawnParticleData()
|
|||
justOne = didOne = false;
|
||||
flipH = flipV = 0;
|
||||
spawnTimeOffset = 0;
|
||||
groupRender = 0;
|
||||
pauseLevel = 0;
|
||||
copyParentFlip = 0;
|
||||
inheritColor = false;
|
||||
|
|
Loading…
Reference in a new issue