I am having a problem with the range at which my macros are showing up in the
sim. I have created the macros with FSDS and have played around with the
properties for the Macro in ASD and in the file itself. The macros will not
show up until I am right up next to them. I have changed the range RefPoint
Visibility and the macros are still not showing up until I am about 250 meters
away from them.
Any help would be appreciated.
Thanks
Brian
Hi Brian,
One way is fool FS by inserting a RefPoint before the one it uses to detremine
the scale and position of the object. The first one (manually inserted) with a
large scale (and so with a long visibility range). This RefPoint will be
followed with the normal one with the exact scale of your project. Here is an
example of a FSDS code. I just got it from one of my projects. May be your is
different and may be you have only one RefPoint to start with (I have 2!):
...
mif( %8 )
RefPoint( 2 :Skip [%4 * 0.0078] %1 %2 E= %8 v1= %6 V2= 16285 )
melse
RefPoint( 7 :Skip [%4 * 0.0078] %1 %2 v1= %6 v2= 16285 )
mifend
...
and the edited part. I change scale to 1. So the V1 visibility parameter will
be in meters (%6 in meters)
...
mif( %8 )
RefPoint( 2 :Skip 1 %1 %2 E= %8 v1= %6 V2= 16285 )
RefPoint( 2 :Skip [%4 * 0.0078] %1 %2 E= %8 v1= %6 V2= 16285 )
melse
RefPoint( 7 :Skip 1 %1 %2 v1= %6 v2= 16285 )
RefPoint( 7 :Skip [%4 * 0.0078] %1 %2 v1= %6 v2= 16285 )
mifend
...
Regards,
Luis
Bookmarks