mirror of
https://github.com/The-Powder-Toy/The-Powder-Toy.git
synced 2025-08-24 17:02:55 +02:00
Fix tpt.get_numOfParts, add "C" next to temperature in HUD
This commit is contained in:
@@ -1757,7 +1757,7 @@ int luatpt_message_box(lua_State* l)
|
||||
}
|
||||
int luatpt_get_numOfParts(lua_State* l)
|
||||
{
|
||||
lua_pushinteger(l, luacon_sim->parts_lastActiveIndex);
|
||||
lua_pushinteger(l, luacon_sim->NUM_PARTS);
|
||||
return 1;
|
||||
}
|
||||
int luatpt_start_getPartIndex(lua_State* l)
|
||||
|
@@ -2092,7 +2092,7 @@ void GameView::OnDraw()
|
||||
else
|
||||
sampleInfo << " ()";
|
||||
}
|
||||
sampleInfo << ", Temp: " << std::fixed << sample.particle.temp -273.15f;
|
||||
sampleInfo << ", Temp: " << std::fixed << sample.particle.temp -273.15f << " C";
|
||||
sampleInfo << ", Life: " << sample.particle.life;
|
||||
sampleInfo << ", Tmp: " << sample.particle.tmp;
|
||||
sampleInfo << ", Pressure: " << std::fixed << sample.AirPressure;
|
||||
@@ -2107,7 +2107,7 @@ void GameView::OnDraw()
|
||||
sampleInfo << c->ElementResolve(sample.particle.type, sample.particle.ctype);
|
||||
else
|
||||
sampleInfo << c->ElementResolve(sample.particle.type, sample.particle.ctype);
|
||||
sampleInfo << ", Temp: " << std::fixed << sample.particle.temp -273.15f;
|
||||
sampleInfo << ", Temp: " << std::fixed << sample.particle.temp - 273.15f << " C";
|
||||
sampleInfo << ", Pressure: " << std::fixed << sample.AirPressure;
|
||||
}
|
||||
if (sample.particle.type == PT_PHOT || sample.particle.type == PT_BIZR || sample.particle.type == PT_BIZRG || sample.particle.type == PT_BIZRS)
|
||||
|
Reference in New Issue
Block a user