Reputation: 21
I'm using the "mouse-down?" code. The problem is that whenever user clicks on a turtle the halo appears. I want to get rid of the halo, or at least hide it.
Please help me to get rid of the halo or hide it. Thank you Asnat Zohar
Upvotes: 1
Views: 54
Reputation: 30498
The reset-perspective
command undoes the effect of any follow
, watch
, or ride
command. So inserting a call to reset-perspective
in the appropriate place in your code should do the trick.
entry for reset-perspective
in the NetLogo dictionary: http://ccl.northwestern.edu/netlogo/docs/dictionary.html#reset-perspective
Upvotes: 1