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

Help needed with FlyBy outside camera view

Messages
120
Country
unitedstates
I'm trying to add an outside camera view, "FlyBy" to my app. I'm using FSX (yes I know it's old)!

I can't seem to get a FlyBy camera view to work.

I've read this link: http://www.fstipsandaddons.com/tutorials/understanding-fsx-cameras.html

I'm adding the FlyBy camera view to my custom camera file. I'm using the PMDG 737NGX 800. The PMDG base camera file aircraft.cfg has a flyby camera view it in already. This is accessed from the menu system in FSX.

I've taken this same block of code (except for the GUID number) and copied it to my -800 custom aircraft file that I use in my app to select different camera views, but it doesn't give me the FlyBy view. It just shows the airframe really up close, with no movement at all (no flyby movement).

So there are three files where camera views can go:

C:\FSX\cameras.cfg
C:\FSX\SimObjects\Airplances\PMDG 737NGX-800\aircraft.cfg
My custom camera file located in a different location my app accesses.

The first two files have FlyBy views defined and they work as expected when accessed from the FSX menu system. When I try to add a FlyBy to my camera file, it doesn't work.

I must be missing something.

Thanks for any help.
 
I finally got it working. I was missing a few lines in the PMDG 737-800 specific aircraft.cfg file:

iniFile.WriteValue("CameraDefinition.999", "SnapPbhAdjust", "Swivel");
iniFile.WriteValue("CameraDefinition.999", "SnapPbhReturn", "False");
iniFile.WriteValue("CameraDefinition.999", "PanPbhAdjust", "Swivel");
iniFile.WriteValue("CameraDefinition.999", "PanPbhReturn", "False");

Now my custom FlyBy camera view works like a champ.
 
Back
Top