1,388
edits
No edit summary |
No edit summary |
||
| Line 6: | Line 6: | ||
| developedby = Roman Ludwicki (PlayeRom, SP-ROM) | | developedby = Roman Ludwicki (PlayeRom, SP-ROM) | ||
| initialrelease = December 11th, 2022 | | initialrelease = December 11th, 2022 | ||
| latestrelease = 1.3.4, | | latestrelease = 1.3.4, June 23rd, 2023 | ||
| writtenin = Nasal | | writtenin = Nasal | ||
| developmentstatus = Active (2022-2023) | | developmentstatus = Active (2022-2023) | ||
| Line 120: | Line 120: | ||
# Supported FG versions from 2020.1. | # Supported FG versions from 2020.1. | ||
# The minimum resolution for using the GUI is 1366x768. | # The minimum resolution for using the GUI is 1366x768. | ||
= Landing gear hints = | |||
If this add-on has a problem with recognizing the landing gear correctly, then you can put the appropriate properties to indicate which indexes from <code>/gear/gear[index]</code> are used by the aircraft. | |||
The structure of the property to be passed to FlightGear is as follows: | |||
<PropertyList> | |||
<sim> | |||
<addon-hints> | |||
<Logbook> | |||
<landing-gear-idx type="int">12</landing-gear-idx> | |||
<landing-gear-idx type="int">13</landing-gear-idx> | |||
</Logbook> | |||
</addon-hints> | |||
</sim> | |||
</PropertyList> | |||
Each <code><landing-gear-idx></code> tag should contain an integer indicating the index of the <code>/gear/gear</code> property array. Thus, <code><landing-gear-idx></code> with values of 12 and 13, indicate that the aircraft uses <code>/gear/gear[12]</code> and <code>/gear/gear[13]</code>. | |||
These properties can be added in a number of ways, such as by placing them in the aircraft files, or by using command line options: | |||
--prop:int:/sim/addon-hints/Logbook/landing-gear-idx[0]=12 | |||
--prop:int:/sim/addon-hints/Logbook/landing-gear-idx[1]=13 | |||
Thanks to MariuszXC for this feature. | |||
[[Category:FlightGear addons]] | [[Category:FlightGear addons]] | ||
[[Category:Nasal software]] | [[Category:Nasal software]] | ||
[[Category:Canvas GUI]] | [[Category:Canvas GUI]] | ||
edits