1
0
Fork 0

- add <power> values

- use more controls wrappers
This commit is contained in:
mfranz 2007-01-15 23:14:57 +00:00
parent 3ba1323fe8
commit b309532bf2

View file

@ -12,6 +12,7 @@
<property>/controls/flight/aileron</property> <property>/controls/flight/aileron</property>
<offset type="double">0.0</offset> <offset type="double">0.0</offset>
<factor type="double">1.0</factor> <factor type="double">1.0</factor>
<power type="double">2.0</power>
</binding> </binding>
</axis> </axis>
@ -22,6 +23,7 @@
<command>property-scale</command> <command>property-scale</command>
<property>/controls/flight/elevator</property> <property>/controls/flight/elevator</property>
<factor type="double">-1.0</factor> <factor type="double">-1.0</factor>
<power type="double">2.0</power>
</binding> </binding>
</axis> </axis>
@ -32,6 +34,7 @@
<command>property-scale</command> <command>property-scale</command>
<property>/controls/flight/rudder</property> <property>/controls/flight/rudder</property>
<factor type="double">1.0</factor> <factor type="double">1.0</factor>
<power type="double">2.0</power>
</binding> </binding>
</axis> </axis>
@ -50,17 +53,15 @@
<low> <low>
<repeatable>true</repeatable> <repeatable>true</repeatable>
<binding> <binding>
<command>property-adjust</command> <command>nasal</command>
<property>/sim/current-view/goal-heading-offset-deg</property> <script>view.panViewDir(1)</script>
<step type="double">1.0</step>
</binding> </binding>
</low> </low>
<high> <high>
<repeatable>true</repeatable> <repeatable>true</repeatable>
<binding> <binding>
<command>property-adjust</command> <command>nasal</command>
<property>/sim/current-view/goal-heading-offset-deg</property> <script>view.panViewDir(-1)</script>
<step type="double">-1.0</step>
</binding> </binding>
</high> </high>
</axis> </axis>
@ -71,17 +72,15 @@
<low> <low>
<repeatable>true</repeatable> <repeatable>true</repeatable>
<binding> <binding>
<command>property-adjust</command> <command>nasal</command>
<property>/sim/current-view/goal-pitch-offset-deg</property> <script>view.panViewPitch(1)</script>
<step type="double">1.0</step>
</binding> </binding>
</low> </low>
<high> <high>
<repeatable>true</repeatable> <repeatable>true</repeatable>
<binding> <binding>
<command>property-adjust</command> <command>nasal</command>
<property>/sim/current-view/goal-pitch-offset-deg</property> <script>view.panViewPitch(-1)</script>
<step type="double">-1.0</step>
</binding> </binding>
</high> </high>
</axis> </axis>
@ -90,8 +89,8 @@
<desc>View Cycle</desc> <desc>View Cycle</desc>
<repeatable>false</repeatable> <repeatable>false</repeatable>
<binding> <binding>
<command>view-cycle</command> <command>nasal</command>
<step type="double">1</step> <script>view.stepView(1)</script>
</binding> </binding>
</button> </button>
@ -171,9 +170,8 @@
<desc>Elevator Trim Forward</desc> <desc>Elevator Trim Forward</desc>
<repeatable>true</repeatable> <repeatable>true</repeatable>
<binding> <binding>
<command>property-adjust</command> <command>nasal</command>
<property>/controls/flight/elevator-trim</property> <script>controls.elevatorTrim(0.75)</script>
<step type="double">0.001</step>
</binding> </binding>
</button> </button>
@ -181,9 +179,8 @@
<desc>Elevator Trim Backward</desc> <desc>Elevator Trim Backward</desc>
<repeatable>true</repeatable> <repeatable>true</repeatable>
<binding> <binding>
<command>property-adjust</command> <command>nasal</command>
<property>/controls/flight/elevator-trim</property> <script>controls.elevatorTrim(-0.75)</script>
<step type="double">-0.001</step>
</binding> </binding>
</button> </button>