mirror of
https://github.com/The-Powder-Toy/The-Powder-Toy.git
synced 2025-08-17 05:44:00 +02:00
TPT: Volume from heat change (for REALISTIC) 290cac8b7e
This commit is contained in:
@@ -2622,6 +2622,10 @@ void Simulation::update_particles_i(int start, int inc)
|
|||||||
c_heat = restrict_flt(c_heat, -MAX_TEMP+MIN_TEMP, MAX_TEMP-MIN_TEMP);
|
c_heat = restrict_flt(c_heat, -MAX_TEMP+MIN_TEMP, MAX_TEMP-MIN_TEMP);
|
||||||
parts[i].temp += c_heat;
|
parts[i].temp += c_heat;
|
||||||
hv[y/CELL][x/CELL] -= c_heat;
|
hv[y/CELL][x/CELL] -= c_heat;
|
||||||
|
#ifdef REALISTIC
|
||||||
|
//Volume increase from heat (temporary)
|
||||||
|
pv[y/CELL][x/CELL] -= c_heat*0.004;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
c_heat = 0.0f;
|
c_heat = 0.0f;
|
||||||
for (j=0; j<8; j++)
|
for (j=0; j<8; j++)
|
||||||
|
Reference in New Issue
Block a user