Projects‎ > ‎PredatorPreySimpleBehaviours‎ > ‎

wander randomly

BehaviourComposer: ignore everything before this.

This behaviour will make your agent wander around randomly

Begin micro-behaviour

Wander Randomly

Begin NetLogo code:
do-every 1 [
set heading (heading + random 25 - random 25)
fd 1 ]
End NetLogo code

Variants

text

Related behaviours

text

How this works

text

History

text

BehaviourComposer: ignore everything after this.