• Which the release of FS2020 we see an explosition of activity on the forun and of course we are very happy to see this. But having all questions about FS2020 in one forum becomes a bit messy. So therefore we would like to ask you all to use the following guidelines when posting your questions:

    • Tag FS2020 specific questions with the MSFS2020 tag.
    • Questions about making 3D assets can be posted in the 3D asset design forum. Either post them in the subforum of the modelling tool you use or in the general forum if they are general.
    • Questions about aircraft design can be posted in the Aircraft design forum
    • Questions about airport design can be posted in the FS2020 airport design forum. Once airport development tools have been updated for FS2020 you can post tool speciifc questions in the subforums of those tools as well of course.
    • Questions about terrain design can be posted in the FS2020 terrain design forum.
    • Questions about SimConnect can be posted in the SimConnect forum.

    Any other question that is not specific to an aspect of development or tool can be posted in the General chat forum.

    By following these guidelines we make sure that the forums remain easy to read for everybody and also that the right people can find your post to answer it.

FSXA Duplicate "wind conditional" objects being loaded

Messages
105
Country
unitedkingdom
Hello folks,

Before trying to resolve some of my interesting visible range issues, I have been trying to set up some conditionally visible objects at the primary airfield I am working on at present.

They all appear but, for some reason, the Runway Caravans appear two at a time - always the same two. If the "active" is 34, then 16 and 34 will both be visible. If 22 or 28 are active, then both 22 and 28 will be visible. Ditto the reciprocal 04 and 10 caravans. I've recreated the entire file, gone through it umpteen times - I cannot see why with winds set to, say 220/08, as they are right now on my sim, I would be seeing both 22 and 28 caravans... But I am.

I strongly suspect that it's me doing something really stupid, so can someone please take a look at the XML file and see if they can spot what it is, before I really do run out of hair to tear out? The windsock and Active Runway "Tee" are working fine.

Thanks.

Ian P.

Code:
<SODE>    

    <!-- Data Probe serving its clients-->
    <SimObject Name="RAF HG">
        <Placement Lat="52.515527028" Lon="-2.263617551" Alt="282.960" Hdg="0.0"/>
        <Model SimTitle="Environmental Data Probe">
            <EnvironmentalDataProbe ClientList="RunwayCaravan04;RunwayCaravan10;RunwayCaravan22;RunwayCaravan28;RunwayCaravan34;RunwayTee;WindSock"/>
        </Model>
    </SimObject> 
    
    <!-- Wind Direction Ranges based switching of alternate models -->
	<!-- Runway Caravans -->
	<SimObject Name="RunwayCaravan04">
		<Placement Lat="52.514348402" Lon="-2.270070776" Alt="0#AGL" Hdg="040.5"/>
        <Model SimTitle="RunwayCaravanBlack">
            <ConditionalVisibility Variable="WindDirection" Value="011-070"/>
        </Model>
    </SimObject>
	<SimObject Name="RunwayCaravan10">
		<Placement Lat="52.51765255" Lon="-2.268075885" Alt="0#AGL" Hdg="099.7"/>
        <Model SimTitle="RunwayCaravanBlack">
            <ConditionalVisibility Variable="WindDirection" Value="071-130"/>
        </Model>
    </SimObject>
	<SimObject Name="RunwayCaravan16">
		<Placement Lat="52.521604423" Lon="-2.261958903" Alt="0#AGL" Hdg="160.3"/>
        <Model SimTitle="RunwayCaravanBlack">
            <ConditionalVisibility Variable="WindDirection" Value="131-190"/>
        </Model>
    </SimObject>
    <SimObject Name="RunwayCaravan22">
        <Placement Lat="52.520789729" Lon="-2.260528334" Alt="0#AGL" Hdg="219.1"/>
        <Model SimTitle="RunwayCaravanBlack">
            <ConditionalVisibility Variable="WindDirection" Value="191-250"/>
        </Model>
	</SimObject>
    <SimObject Name="RunwayCaravan28">
        <Placement Lat="52.515930623" Lon="-2.255259362" Alt="0#AGL" Hdg="285.5"/>
        <Model SimTitle="RunwayCaravanBlack">
            <ConditionalVisibility Variable="WindDirection" Value="251-310"/>
        </Model>
	</SimObject>
    <SimObject Name="RunwayCaravan34">
        <Placement Lat="52.513214393" Lon="-2.257143034" Alt="0#AGL" Hdg="342.2"/>
        <Model SimTitle="RunwayCaravanBlack">
            <ConditionalVisibility Variable="WindDirection" Value="311-010"/>
        </Model>
	</SimObject>	
	
	<!-- Runway T -->
	<SimObject Name="RunwayTee">
        <Placement Lat="52.515900627" Lon="-2.263531110" Alt="0#AGL" Hdg="018.0"/>
        <Model SimTitle="RunwayTee04">
            <ConditionalVisibility Variable="WindDirection" Value="011-070"/>
        </Model>
		<Model SimTitle="RunwayTee10">
            <ConditionalVisibility Variable="WindDirection" Value="071-130"/>
        </Model>
		<Model SimTitle="RunwayTee16">
            <ConditionalVisibility Variable="WindDirection" Value="131-190"/>
        </Model>
		<Model SimTitle="RunwayTee22">
            <ConditionalVisibility Variable="WindDirection" Value="191-250"/>
        </Model>
		<Model SimTitle="RunwayTee28">
            <ConditionalVisibility Variable="WindDirection" Value="251-310"/>
        </Model>
		<Model SimTitle="RunwayTee34">
            <ConditionalVisibility Variable="WindDirection" Value="311-010"/>
        </Model>
    </SimObject>
	
	<!-- Windsock -->
    <SimObject Name="WindSock">
        <Placement Lat="52.518009" Lon="-2.262158" Alt="0#AGL" Hdg="0.0"/>			
        <Model SimTitle="Windsock Slow">		
            <VariableDrivenRotation Variable="WindDirection" Axis="HEADING" Animated="No"/>			
            <ConditionalVisibility Variable="WindSpeed" Value="0-14"/>
        </Model>
        <Model SimTitle="Windsock Medium Speed">		
            <VariableDrivenRotation Variable="WindDirection" Axis="HEADING" Animated="No"/>			
            <ConditionalVisibility Variable="WindSpeed" Value="15-28"/>
        </Model>
        <Model SimTitle="Windsock Fast">		
            <VariableDrivenRotation Variable="WindDirection" Axis="HEADING" Animated="No"/>			
            <ConditionalVisibility Variable="WindSpeed" Value="29-60"/>
        </Model>  			
    </SimObject>

</SODE>
 

Attachments

Hello Ian,

I don't know if it has anything to do with your problem but RunwayCaravan16 is missing in EnvironmentalDataProbe ClientList
 
Back
Top