Asnat Zohar
Asnat Zohar

Reputation: 21

NetLogo 5.2 - hide the halo

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

objects with halo

Upvotes: 1

Views: 54

Answers (1)

Seth Tisue
Seth Tisue

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

Related Questions