Kimmo Kotajärvi

Results 3 comments of Kimmo Kotajärvi

Docking surfaces are already shown, no? Red in "collision mesh" view.

There's a commented out bit in MatrixTransform::Render that draws a little XYZ widget on each node, try that. I'll do something proper, but I don't quite know what the GUI...

Temperature is currently calculated like this (Ship::GetHullTemperature): ``` c++ double dragGs = GetAtmosForce().Length() / (GetMass() * 9.81); return dragGs / 5.0; //atmoshielded multiplier is 300.0 ``` AtmosForce being (DynamicBody::CalcExternalForce): ```...