Nasal Loops: Difference between revisions

Jump to navigation Jump to search
No edit summary
Line 252: Line 252:
</syntaxhighlight>
</syntaxhighlight>


=== maketimer from FDM Initialized ===
<syntaxhighlight lang="nasal">
var timer_loop = func{
# logic
};
timer_loopTimer = maketimer(0.25, timer_loop);
setlistener("sim/signals/fdm-initialized", func {
    timer_loopTimer.start();
});
</syntaxhighlight>


See also {{func link|maketimer()}} {{func link|settimer()}}
See also {{func link|maketimer()}} {{func link|settimer()}}
306

edits

Navigation menu