mirror of
https://github.com/The-Powder-Toy/The-Powder-Toy.git
synced 2025-04-04 22:42:28 +02:00
Increase speed of MIX tool and make it work with liquids (#306)
* Make MIX tool work with liquids and gases
This commit is contained in:
parent
5b525852b4
commit
7251f645e4
@ -19,7 +19,7 @@ int Tool_Mix::Perform(Simulation * sim, Particle * cpart, int x, int y, float st
|
||||
|
||||
int distance = (int)(std::pow(strength, .5f) * 10);
|
||||
|
||||
if(!(sim->elements[thisPart&0xFF].Properties & TYPE_PART))
|
||||
if(!(sim->elements[thisPart&0xFF].Properties & (TYPE_PART | TYPE_LIQUID | TYPE_GAS)))
|
||||
return 0;
|
||||
|
||||
int newX = x + (rand() % distance) - (distance/2);
|
||||
@ -32,7 +32,7 @@ int Tool_Mix::Perform(Simulation * sim, Particle * cpart, int x, int y, float st
|
||||
if(!thatPart)
|
||||
return 0;
|
||||
|
||||
if(!(sim->elements[thatPart&0xFF].Properties & TYPE_PART))
|
||||
if(!(sim->elements[thatPart&0xFF].Properties & (TYPE_PART | TYPE_LIQUID | TYPE_GAS)))
|
||||
return 0;
|
||||
|
||||
sim->pmap[y][x] = thatPart;
|
||||
|
Loading…
x
Reference in New Issue
Block a user