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

Wigwags

Messages
154
Country
unitedkingdom
Hi,

I've created wigwag hold short lights by placing two effects, one with a delay on it to start after the first effect goes out. This gives me the alternate flashing lights to good effect (no pun intended!).

However if I fly away from the scenery and then return back the 2 effects are flashing in time (ie both on, both off).

Is there any way of "linking" these effects to keep them "in time" with one another?

Thanks

Phil Reynolds
 
I don't know about synchronizing the effects. They probably re-initialize when you get back to view them resulting in a random blinker timing and sometmes they flash in unison,which is not good for a wigwag.

I made my wigwag with gMax and used the 0282h variable to control the blinking. Since the two lights are in the same code, they are always synchronized.

Here's the code:
PHP:
    IFMSK nolgt_1, 0282h, 0F0F0h
;white light  
    BGL_LIGHT LIGHT_BEACON, -0.701, 0.725, 0.021, 20, 0.60, 0.40, 0FFFFEEA6h, 0.000000, 0.000000, 1.000000 ; source poly num = 299
    BGL_JUMP_32 nolgt_2
    nolgt_1       label BGLCODE
;red light
    BGL_LIGHT LIGHT_BEACON, 0.655, 0.725, 0.021, 20, 0.60, 0.40, 0FFFF0000h, 0.000000, 0.000000, 1.000000 ; source poly num = 370
    nolgt_2       label BGLCODE
 
Back
Top