- Messages
- 89
- Country
I had assumed that when a parameter declaration has the
However, in the
which clearly can not be evaluated while a model XML is being loaded, but is intended to be evaluated at run-time while the aircraft is flying. Is this just a mistake, and the simulator gracefully ignores the
Process
attribute, that means that the parameter value (the text inside the element) is a RPN expression, typically containing references to other parameters like #FOO#
, to evaluate, to get the parameter's value. As in this example in the SDK documentation:
XML:
<MIN_SPEED_TAKEOFF_LIFT Process="Float">#MIN_SPEED_TAKEOFF_HYDRAULICS# 0.45 *</MIN_SPEED_TAKEOFF_LIFT>
However, in the
ASOBO_ENGINE_Throttle_SubTemplate
template in Asobo/Common/Subtemplates/Engine_Subtemplates.xml
, I now notice this:
Code:
<DRAG_MIN_VALUE Process="Int">(A:THROTTLE LOWER LIMIT, position 16k)</DRAG_MIN_VALUE>
which clearly can not be evaluated while a model XML is being loaded, but is intended to be evaluated at run-time while the aircraft is flying. Is this just a mistake, and the simulator gracefully ignores the
Process
attribute if it can't be evaluated at load-time?