From f28d4da0afd102a0a9d6ba82c089849bd5df8608 Mon Sep 17 00:00:00 2001
From: frohlich
You can set the center of scaling with the center tag. The center is +that point that does not ever change its position under any scaling. +If unset this defaults to the (0, 0, 0).
+The amount of scaling for each dimension is computed by the following formula (and then clamped if a min or max value is specified.)
@@ -1293,8 +1302,35 @@ the same that you would set in <property-base>.material.showDialog("/sim/model/foo/material/fuselage");+
This animation type is used to execute a command binding when the mouse + is pressed on this particular object. The Commands are the usual bindings + like used elsewhere in flightgear. +
++ +<animation> + <type>pick</type> + <object-name>Button</object-name> + <repeatable>true</repeatable> + <interval-sec>0.1</interval-sec> + <binding> + <command>property-assign</command> + <property>instrumentation/button-pressed</property> + <value>1</value> + </binding> + <mod-up> + <binding> + <command>property-assign</command> + <property>instrumentation/button-pressed</property> + <value>0</value> + </binding> + </mod-up> +</animation>+