https://wiki.alioth.net/index.php/Fully ... list)_File
Code: Select all
// =============================================================================
// CABIN TEMPERATURE BAR
// =============================================================================
// Shows internal cabin temperature
{ // cabin temperature bar
height = 8; // Bar height
selector = "drawCabinTempBar:"; // Drawing method
width = 80; // Bar width
// POSITION PARAMETERS:
x = -200; // 200 pixels left of center
y = 51; // 51 pixels up from bottom
x_origin = 0; // Horizontal origin: 0 = center of screen
y_origin = -1; // Vertical origin: -1 = bottom of screen
// COLOR PARAMETERS:
color_low = "greenColor"; // Color for normal temperature range
color_medium = "yellowColor"; // Color for elevated temperature range
color_high = "orangeColor"; // Color for high temperature range
color_critical = "redColor"; // Color for dangerous critical temperature
color_surround = "whiteColor"; // Color for the border around the bar
},
The default hud dial for cabin temperature (CabinTempBar) uses 4 colors .
Apparently vimana-x hud uses a different system.
VimanaX_HUD.js has
Code: Select all
var ctmp = Math.round(100 * p.temperature);
if (ctmp > 70) this.$blinkingIcons("VimanaX_CTempAlert", "vx_alert_red.png");
else if (ctmp > 50) this.$blinkingIcons("VimanaX_CTempAlert", "vx_alert_orange.png");
else p.setCustomHUDDial("VimanaX_CTempAlert", "vx_blank.png");
That code snippet suggests vimana-x max temp is 100.
just note at what temp trumbles die with and without lots of food in the hull.
The food inquestion is standard oolite food cargo, which according to cim means "luxury food, interstellar delicacies, and the like"
. It seems trumbles are gourmets.
OS : Arch Linux 64-bit - rolling release
From: The Netherlands, Europe
OXPs :
My user page (needs updating)
Retired, occasionally active