Jump to content

this4david2

Frozen-Inactivity
  • Content Count

    1
  • Donations

    $0.00 
  • Joined

  • Last visited

Everything posted by this4david2

  1. Can someone please help me with makemdl.parts xml code. I am trying to have a special effect on a model I am working on that will have a part visible on the left side when flaps are down and left aileron is up OR that will have a part visible on the right side when flaps are down and right aileron is up. This code works correctly for the right side but not for the left. What is happening is the left_part_up becomes visible when the right aileron is up but not visible when the left aileron is up. If i am totally going about this the wrong way maybe suggest a better way. Here is the code i am using <part> <name>right_part_up</name> <visible_in_range> <parameter> <code> (A:TRAILING EDGE FLAPS0 RIGHT PERCENT, percent) 95 &gt; (A:AILERON RIGHT DEFLECTION PCT,percent) 1 &gt; &amp;&amp; </code> </parameter> <minvalue>1</minvalue> </visible_in_range> </part> <part> <name>right_part_down</name> <visible_in_range> <parameter> <code> (A:TRAILING EDGE FLAPS0 RIGHT PERCENT, percent) 95 &lt; (A:AILERON RIGHT DEFLECTION PCT,percent) 1 &lt; || ; </code> </parameter> <minvalue>1</minvalue> </visible_in_range> </part> <part> <name>left_part_up</name> <visible_in_range> <parameter> <code> (A:TRAILING EDGE FLAPS0 LEFT PERCENT, percent) 95 &gt; (A:AILERON LEFT DEFLECTION PCT,percent) 1 &gt; &amp;&amp; </code> </parameter> <minvalue>1</minvalue> </visible_in_range> </part> <part> <name>left_part_down</name> <visible_in_range> <parameter> <code> (A:TRAILING EDGE FLAPS0 LEFT PERCENT, percent) 95 &lt; (A:AILERON LEFT DEFLECTION PCT,percent) 1 &lt; || ; </code> </parameter> <minvalue>1</minvalue> </visible_in_range> </part> thank you David
×
×
  • Create New...