mirror of
https://github.com/FlightControl-Master/MOOSE.git
synced 2025-08-15 10:47:21 +00:00
Awacs next Alpha
This commit is contained in:
parent
a4f1c60da2
commit
3a513da942
@ -2752,7 +2752,7 @@ do -- COORDINATE
|
|||||||
return "BR, " .. self:GetBRText( AngleRadians, Distance, Settings )
|
return "BR, " .. self:GetBRText( AngleRadians, Distance, Settings )
|
||||||
end
|
end
|
||||||
|
|
||||||
--- Return a BRAA string from a COORDINATE to the COORDINATE.
|
--- Return a BRA string from a COORDINATE to the COORDINATE.
|
||||||
-- @param #COORDINATE self
|
-- @param #COORDINATE self
|
||||||
-- @param #COORDINATE FromCoordinate The coordinate to measure the distance and the bearing from.
|
-- @param #COORDINATE FromCoordinate The coordinate to measure the distance and the bearing from.
|
||||||
-- @param Core.Settings#SETTINGS Settings (optional) The settings. Can be nil, and in this case the default settings are used. If you want to specify your own settings, use the _SETTINGS object.
|
-- @param Core.Settings#SETTINGS Settings (optional) The settings. Can be nil, and in this case the default settings are used. If you want to specify your own settings, use the _SETTINGS object.
|
||||||
|
|||||||
@ -3150,9 +3150,9 @@ function AUFTRAG:IsSuccess()
|
|||||||
return self.status==AUFTRAG.Status.SUCCESS
|
return self.status==AUFTRAG.Status.SUCCESS
|
||||||
end
|
end
|
||||||
|
|
||||||
--- Check if mission is over. This could be state DONE or CANCELLED.
|
--- Check if mission is over. This could be state DONE, CANCELLED, SUCCESS, FAILED.
|
||||||
-- @param #AUFTRAG self
|
-- @param #AUFTRAG self
|
||||||
-- @return #boolean If true, mission is currently executing.
|
-- @return #boolean If true, mission is over.
|
||||||
function AUFTRAG:IsOver()
|
function AUFTRAG:IsOver()
|
||||||
local over = self.status==AUFTRAG.Status.DONE or self.status==AUFTRAG.Status.CANCELLED or self.status==AUFTRAG.Status.SUCCESS or self.status==AUFTRAG.Status.FAILED
|
local over = self.status==AUFTRAG.Status.DONE or self.status==AUFTRAG.Status.CANCELLED or self.status==AUFTRAG.Status.SUCCESS or self.status==AUFTRAG.Status.FAILED
|
||||||
return over
|
return over
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user