Libraries‎ > ‎Library‎ > ‎Control‎ > ‎

Do after setup

BehaviourComposer: ignore everything before this.
Begin micro-behaviour:
Begin description:Delays the execution of a list of micro-behaviours until after setup completes.End description

Do after setup

Begin NetLogo code:
do-after-setup  [add-behaviours list-of-micro-behaviours "Post-setup Behaviours" []]
End NetLogo code

Variants

You can add micro-behaviours to the list.

How this works

This relies upon the Behaviour Composer do-after-setup scheduling command to run the list of micro-behaviours after setup completes.

Related micro-behaviours

History

Do after setup was implemented by Ken Kahn on 10 November 2009.

BehaviourComposer: ignore everything after this.