ascend + basic auto landing + misc

This commit is contained in:
2026-04-18 23:19:23 -04:00
parent 8a0700c36a
commit 9a4ae5e472
17 changed files with 504 additions and 7 deletions
+32
View File
@@ -0,0 +1,32 @@
declare function AutoStage{
if not EnginesInStageActive(ship:stagenum) {
stage.
wait 0.1.
}
}
local function EnginesInStageActive{
parameter targetStage.
list engines in allEngines.
for eng in allEngines{
if eng:stage = targetStage {
if eng:IGNITION and eng:flameout {
return false.
}
}
}
return true.
}
local function IsFairingStage{
parameter s.
}
local function StateHasEngines{
parameter s.
}