Projects‎ > ‎PredatorPreySimpleBehaviours‎ > ‎

walk in circle

BehaviourComposer: ignore everything before this.
This behaviour will make your agent walk around in a circle
Begin micro-behaviour

Walk in circle

Begin NetLogo code:
do-every 1 [ ;; do every time tick
turn-right 15 ;; turn right 15 degrees
go-forward 1 ] ;; move forward 1 field
End NetLogo code

Variants

text

Related behaviours

text

How this works

text

History

text

BehaviourComposer: ignore everything after this.