scenario.xml
- Code: Select all
<?xml version="1.0"?>
<PropertyList>
<scenario>
<name>test flight scenario</name>
<description>This scenario is used to demonstrate the flightpath</description>
<entry>
<callsign>object-nasal</callsign>
<type>static</type>
<class>jet_transport</class>
<model>Aircraft/my-aircraft.xml</model> <!-- this is the one i need to modify the offsets for -->
</entry>
</scenario>
</PropertyList>
my-aircraft.xml
- Code: Select all
<?xml version="1.0"?>
<PropertyList>
<path>modelpathhere.ac</path>
<property>
<offsets>
<x-m>5</x-m>
<y-m>0</y-m> <!-- these values need to be changed real time -->
<z-m>0</z-m>
</offsets>
</property>
</PropertyList>
Any help?