Select your preferred scripting language. All code snippets will be displayed in this language.
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseCalled every frame while the mouse is over the GUIElement or Collider.
A call to OnMouseEnter occurs on the first frame the mouse is over the object.
OnMouseOver is then called each frame until the mouse moves away, at which point OnMouseExit
is called.
This function is not called on objects that belong to Ignore Raycast layer.
OnMouseOver can be a co-routine, simply use the yield statement in the function.
This event is sent to all scripts attached to the Collider or GUIElement.