Control.MouseFilter

Values

ValueMeaning
mouseFilterStop0

The control will receive mouse button input events through _guiInput if clicked on. These events are automatically marked as handled and they will not propagate further to other controls.

mouseFilterPass1

The control will receive mouse button input events through _guiInput if clicked on. If this control does not handle the event, the parent control (if any) will be considered for a mouse click, and so on until there is no more parent control to potentially handle it. Even if no control handled it at all, the event will still be handled automatically.

mouseFilterIgnore2

The control will not receive mouse button input events through _guiInput and will not block other controls from receiving these events. These events will also not be handled automatically.

Meta