• 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.

Viewport Gauge?

Messages
378
Country
unitedstates
I am trying to put a Top Down view as a gauge into my FSX cockpit. I used the FS9view code as follows:

Code:
<Gauge Name="viewport" Version="1.0">
  <Element>
    <Position X="0" Y="0"/>
    <CustomDraw Name="fs9view:view" X="212" Y="179" Zoom="0.75" Pitch="-90" Bank="0" Heading="000" OffsetUp="100" OffsetForward="0" OffsetRight="0">
    </CustomDraw>
  </Element>
</Gauge>

Unfortunately, the sim did not accept the minus (-) in the pitch entry no mater how and where I added it. Additionally, it was a frame rate killer.

Using the same 0,0,0 hole in the panel .bmp, I opened a new top down view in the sim and placed it behind the panel in the proper location. This worked fine and had minimal effect on the frame rates. Is there any way to make this view come up on startup (preferable), or fix the FS9 view to go negative in pitch?

JimD
 
Gauge that represents a camera

Hi

I just did a Gauge that represents a camera above the landing gear in a A380.

Bank and Pitch do not appear to work.
From memory this also applies to placing Fireworks etc

<Gauge Name="Nose_Camera" Version="1.0">
<Element>
<Position X="0" Y="0"/>
<CustomDraw Name="fs9view:view" X="300" Y="230" Zoom="0.50" Pitch="0" Bank="0" Heading="000" OffsetUp="-260" OffsetForward="10" OffsetRight="1">
</CustomDraw>
</Element>
</Gauge>

gauge76=!Nose Camera, 1650, 470,300,230

Steve
 
Last edited:
Thanks for the tip Steve. Since it was more of a "Where am I?" sort of gauge, I settled on using the fs9gps map.
 
Back
Top