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

FSX Increasing Aircraft Eyepoint?

Messages
1,101
Country
unitedkingdom
Hello All,

I'm assuming this would be an FDE tweak.

I have noticed this on several aircraft I fly, how can I increase the Eyepoint so it is closer to the aircraft?

19b519ca.jpg


is it automatic based on the aircraft size?

Any ideas are appreciated, thanks.
 
The Spot View eyepoint is indeed based on the model's encoded wingspan radius.

For FS9 models this may be adjusted via AFCAD's "Aircraft Editor" option.

For FSX models, use Arno's RADitor utility.
 
Thanks for the speedy response Bill - most appreciated.

Where's Arno's tool? Doesn't appear to be in the file library? :)
 
Sorry - another quick question.

What if the case is an FSX, 2004 Port-Over aircraft?

Arno's tool doesn't work as its a 2004 MDL, AFCAD's changes only appear to the aircraft whilst in 2004?

No work around I expect?
 
Well, for an FS9 "portover" into FSX, the only remaining option would be to use a Hex Editor to manally reset the radius.

Byte 0x001C...

It is stored in meters (hex of course)

It is also possible to change the radius of FS9 a/c installed in FSX using AIFP, as I recall.
 
Hi Bill,

Check AIFP out, wasn't able to see where to tweak the Aircraft Radius, tried a few things out like Win Span 7 Min Parking Radius without any luck.

Unless I'm looking in the wrong direction?

Thanks again.
 
If you have Visual Studio, you can open the model in it and make the edit rather easily. As I wrote earlier, the radius is stored at

0000001C

For my CJ1+ I have the radius set as 09 (meters).

Alternatively, there are many freeware hex editors available for download.
 
Hi Bill,

Jut using a freeware Hex editor to take a look at the MDL, not found anything as of yet, I'm sure i will soon.

Many thanks.
 
If it helps at all, it is the 29th "pair" from the beginning of the file!

RIFF._..MDL8MDLH

4D is the hex code for "8", and the radius entry will be on the second line directly below the 4D entry...
 
Ok Bill - I've got the Hex Editor open with the MDL in question, the 29th Pair is the part thats got me, could you please show me what a "pair" would be from these screen?

fc4ba3f6.jpg


Your help is most appreciated.
 
I believe it's the pair on the second line under 0c - it currently reads '12'

Yep! Change the 12 to 07 and then save. That will (re)set the radius to 7m, which is just about right for the size aircraft you're working on. :D

In the left column, 2nd line notice that the base address for that line is:

000000010

The row across the top indicates the specific address of any "cell" on that row. The address we are wanting is 0000001C.

Add the value of the "cell" to the base address of the row to locate the contents of that specific "cell's address."

Working the other direction is just as easy. Note that the number "8" in the header row: RIFF._..MDL8MDLH
is in the 0C column, on the base row 00000000. Adding the two together tells us that the number "8" is at hex-address 0000000C (or 0x000C for the short form)... :teacher:
 
Last edited:
Yep! Change the 12 to 07 and then save. That will (re)set the radius to 7m, which is just about right for the size aircraft you're working on. :D

In the left column, 2nd line notice that the base address for that line is:

000000010

The row across the top indicates the specific address of any "cell" on that row. The address we are wanting is 0000001C.

Add the value of the "cell" to the base address of the row to locate the contents of that specific "cell's address."

Working the other direction is just as easy. Note that the number "8" in the header row: RIFF._..MDL8MDLH
is in the 0C column, on the base row 00000000. Adding the two together tells us that the number "8" is at hex-address 0000000C (or 0x000C for the short form)... :teacher:


Hi Bill,

Out of curiosity, this isn't the case with all .MDL files is it?

Several aircraft I have tried don't encompass this line or does is have to be added in - adding it in seemed to make the MDL un-readable?

Regards.
 
Last edited:
Back
Top