| Back to Index | Page generated: Oct 27, 2025, 5:37:22 AM | 
 Expansion Aad-HUD
 Expansion Aad-HUD| from Expansion Manager's OXP list | from Expansion Manifest | |
|---|---|---|
| Description | A HUD that enhances and reorganizes the default ones. Laser heat indicator integrated to the x-hair. Roll, pitch and yaw indicators integrated to the compass. MFDs' (4) positioned to the top corners and sides. Shield+energy positioned to the right. | A HUD that enhances and reorganizes the default ones. Laser heat indicator integrated to the x-hair. Roll, pitch and yaw indicators integrated to the compass. MFDs' (4) positioned to the top corners and sides. Shield+energy positioned to the right. | 
| Identifier | oolite.oxp.spara.aad-hud | oolite.oxp.spara.aad-hud | 
| Title | Aad-HUD | Aad-HUD | 
| Category | HUDs | HUDs | 
| Author | spara | spara | 
| Version | 1.1.4 | 1.1.4 | 
| Tags | ||
| Required Oolite Version | ||
| Maximum Oolite Version | ||
| Required Expansions | ||
| Optional Expansions | ||
| Conflict Expansions | ||
| Information URL | http://wiki.alioth.net/index.php/Aad-HUD | n/a | 
| Download URL | https://wiki.alioth.net/img_auth.php/7/76/Aad-HUD_1.1.4.oxz | n/a | 
| License | CC-BY-NC-SA 4.0 | CC-BY-NC-SA 4.0 | 
| File Size | n/a | |
| Upload date | 1610873337 | 
Also read http://wiki.alioth.net/index.php/Aad-HUD
AlmostAlmostDefault HUD OXP ver 1.1.4 (3.5.2015) Author: spara (Mika SpÄra) _Description_ This hud enhances the square version of AlmostDefault HUD by Tichy by making adjustments. Adjustments: * small tweaks here and there * small laser heat indicator integrated to the x-hair * roll, pitch and yaw indicators integrated to the compass * MFDs' (4) are positioned to the top corners and sides * non-linear scanner and scanner ultra-zoom enabled Other: * hud_small is fashioned in the same way. * compatible with HUDSelector _Credits_ * Hud originally by Tichy ------ This work is licensed under the Creative Commons Attribution-Noncommercial-Share Alike 4.0 Unported License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/
| Path | |
|---|---|
| Scripts/aad-hud-normal.js | "use strict";
this.name = "aad-hud-normal";
this.author = "spara";
this.copyright = "2015 spara";
this.license     = "CC BY-NC-SA 4.0"; 
this.startUp = function() {
	this.$hudSelector = worldScripts.hudselector;
	if(this.$hudSelector)
		this.$hudSelector.$HUDSelectorAddHUD("Aad-HUD normal", this.name);
}
this.startUpComplete = function() {
	this.playerBoughtNewShip(player.ship);
}
this.playerBoughtNewShip = function(ship) {
	if(!this.$hudSelector && (player.ship.hud === "hud.plist"))
		player.ship.hud =  this.name + ".plist";
}
 | 
| Scripts/aad-hud-small.js | "use strict";
this.name = "aad-hud-small";
this.author = "spara";
this.copyright = "2015 spara";
this.license     = "CC BY-NC-SA 4.0"; 
this.startUp = function() {
	this.$hudSelector = worldScripts.hudselector;
	if(this.$hudSelector)
		this.$hudSelector.$HUDSelectorAddHUD("Aad-HUD small", this.name);
}
this.startUpComplete = function() {
	this.playerBoughtNewShip(player.ship);
}
this.playerBoughtNewShip = function(ship) {
	if(!this.$hudSelector && (player.ship.hud === "hud-small.plist"))
		player.ship.hud =  this.name + ".plist";
}
 |