Add flightrecord components for escort ships and refuelling tankers.
These need to be included aircraft model side to work; e.g. <signals include="/Aircraft/Generic/flightrecorder/components/ai-models-carrier.xml"> <count type="int">4</count> </signals> <signals include="/Aircraft/Generic/flightrecorder/components/ai-models-escorts.xml"> <count type="int">12</count> </signals> <signals include="/Aircraft/Generic/flightrecorder/components/ai-models-tanker.xml"> <count type="int">4</count> </signals>
This commit is contained in:
parent
04adc76265
commit
588bdcd580
2 changed files with 86 additions and 0 deletions
|
@ -0,0 +1,39 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<PropertyList>
|
||||
<signal>
|
||||
<type>double</type>
|
||||
<property type="string">/ai/models/escort[%i]/position/altitude-ft</property>
|
||||
</signal>
|
||||
<signal>
|
||||
<type>double</type>
|
||||
<property type="string">/ai/models/escort[%i]/position/latitude-deg</property>
|
||||
</signal>
|
||||
<signal>
|
||||
<type>double</type>
|
||||
<property type="string">/ai/models/escort[%i]/position/longitude-deg</property>
|
||||
</signal>
|
||||
<signal>
|
||||
<type>double</type>
|
||||
<property type="string">/ai/models/escort[%i]/position/global-x</property>
|
||||
</signal>
|
||||
<signal>
|
||||
<type>double</type>
|
||||
<property type="string">/ai/models/escort[%i]/position/global-y</property>
|
||||
</signal>
|
||||
<signal>
|
||||
<type>double</type>
|
||||
<property type="string">/ai/models/escort[%i]/position/global-z</property>
|
||||
</signal>
|
||||
<signal>
|
||||
<type>double</type>
|
||||
<property type="string">/ai/models/escort[%i]/orientation/pitch-deg</property>
|
||||
</signal>
|
||||
<signal>
|
||||
<type>double</type>
|
||||
<property type="string">/ai/models/escort[%i]/orientation/roll-deg</property>
|
||||
</signal>
|
||||
<signal>
|
||||
<type>double</type>
|
||||
<property type="string">/ai/models/escort[%i]/orientation/true-heading-deg</property>
|
||||
</signal>
|
||||
</PropertyList>
|
|
@ -0,0 +1,47 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<PropertyList>
|
||||
<signal>
|
||||
<type>double</type>
|
||||
<property type="string">/ai/models/tanker[%i]/position/altitude-ft</property>
|
||||
</signal>
|
||||
<signal>
|
||||
<type>double</type>
|
||||
<property type="string">/ai/models/tanker[%i]/id</property>
|
||||
</signal>
|
||||
<signal>
|
||||
<type>string</type>
|
||||
<property type="string">/ai/models/tanker[%i]/callsign</property>
|
||||
</signal>
|
||||
<signal>
|
||||
<type>double</type>
|
||||
<property type="string">/ai/models/tanker[%i]/position/latitude-deg</property>
|
||||
</signal>
|
||||
<signal>
|
||||
<type>double</type>
|
||||
<property type="string">/ai/models/tanker[%i]/position/longitude-deg</property>
|
||||
</signal>
|
||||
<signal>
|
||||
<type>double</type>
|
||||
<property type="string">/ai/models/tanker[%i]/position/global-x</property>
|
||||
</signal>
|
||||
<signal>
|
||||
<type>double</type>
|
||||
<property type="string">/ai/models/tanker[%i]/position/global-y</property>
|
||||
</signal>
|
||||
<signal>
|
||||
<type>double</type>
|
||||
<property type="string">/ai/models/tanker[%i]/position/global-z</property>
|
||||
</signal>
|
||||
<signal>
|
||||
<type>double</type>
|
||||
<property type="string">/ai/models/tanker[%i]/orientation/pitch-deg</property>
|
||||
</signal>
|
||||
<signal>
|
||||
<type>double</type>
|
||||
<property type="string">/ai/models/tanker[%i]/orientation/roll-deg</property>
|
||||
</signal>
|
||||
<signal>
|
||||
<type>double</type>
|
||||
<property type="string">/ai/models/tanker[%i]/orientation/true-heading-deg</property>
|
||||
</signal>
|
||||
</PropertyList>
|
Loading…
Add table
Reference in a new issue