Fixes from Julian Foad:
- makes instrument knobs turn at a realistic rate - removes redundant <min> and <max> specifications* - corrects the indentation to reflect nesting depth - corrects some descriptive names * E.g. if the gyro compass heading is 365, there's no point clamping the value to 360 before drawing it. Just using the given value is more likely to be right - or, if it's wrong, at least we won't hide the bug.
This commit is contained in:
parent
a42a06cc9e
commit
056dff7dee
4 changed files with 290 additions and 289 deletions
|
@ -50,8 +50,6 @@ properties' values.
|
|||
<transformation>
|
||||
<type>rotation</type>
|
||||
<property>/instrumentation/heading-indicator/indicated-heading-deg</property>
|
||||
<min>-720.0</min>
|
||||
<max>720.0</max>
|
||||
<scale>-1.0</scale>
|
||||
</transformation>
|
||||
</transformations>
|
||||
|
@ -188,10 +186,12 @@ properties' values.
|
|||
</transformation>
|
||||
<transformation>
|
||||
<type>rotation</type>
|
||||
<offset>180</offset>
|
||||
<property>/autopilot/settings/heading-bug-deg</property>
|
||||
<scale>5.0</scale>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
||||
<layer>
|
||||
<name>Heading label</name>
|
||||
<texture>
|
||||
|
@ -215,6 +215,7 @@ properties' values.
|
|||
<transformation>
|
||||
<type>rotation</type>
|
||||
<property>/autopilot/settings/heading-bug-deg</property>
|
||||
<scale>5.0</scale>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
@ -241,7 +242,8 @@ properties' values.
|
|||
</transformation>
|
||||
<transformation>
|
||||
<type>rotation</type>
|
||||
<offset>180</offset>
|
||||
<property>/instrumentation/heading-indicator/indicated-heading-deg</property>
|
||||
<scale>5.0</scale>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
@ -269,8 +271,7 @@ properties' values.
|
|||
<transformation>
|
||||
<type>rotation</type>
|
||||
<property>/instrumentation/heading-indicator/indicated-heading-deg</property>
|
||||
<min>0</min>
|
||||
<max>360</max>
|
||||
<scale>5.0</scale>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
|
|
@ -737,7 +737,7 @@ properties' values.
|
|||
</action>
|
||||
|
||||
<action>
|
||||
<name>timer set hours down</name>
|
||||
<name>timer set minutes down</name>
|
||||
<button>1</button>
|
||||
<x>89</x>
|
||||
<y>-12</y>
|
||||
|
@ -760,7 +760,7 @@ properties' values.
|
|||
</action>
|
||||
|
||||
<action>
|
||||
<name>timer set hours up</name>
|
||||
<name>timer set minutes up</name>
|
||||
<button>1</button>
|
||||
<x>100</x>
|
||||
<y>-12</y>
|
||||
|
|
|
@ -343,7 +343,8 @@ properties' values.
|
|||
</transformation>
|
||||
<transformation>
|
||||
<type>rotation</type>
|
||||
<offset>180</offset>
|
||||
<property alias="../../../../../params/nav-radial-selected"/>
|
||||
<scale>5</scale>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
@ -371,8 +372,7 @@ properties' values.
|
|||
<transformation>
|
||||
<type>rotation</type>
|
||||
<property alias="../../../../../params/nav-radial-selected"/>
|
||||
<min>0</min>
|
||||
<max>360</max>
|
||||
<scale>5</scale>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
|
|
@ -343,7 +343,8 @@ properties' values.
|
|||
</transformation>
|
||||
<transformation>
|
||||
<type>rotation</type>
|
||||
<offset>180</offset>
|
||||
<property alias="../../../../../params/nav-radial-selected"/>
|
||||
<scale>5</scale>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
@ -371,8 +372,7 @@ properties' values.
|
|||
<transformation>
|
||||
<type>rotation</type>
|
||||
<property alias="../../../../../params/nav-radial-selected"/>
|
||||
<min>0</min>
|
||||
<max>360</max>
|
||||
<scale>5</scale>
|
||||
</transformation>
|
||||
</transformations>
|
||||
</layer>
|
||||
|
|
Loading…
Reference in a new issue