Struct MouseState
Combine a single pointer with buttons and a scroll wheel.
Implements
Namespace: UnityEngine .InputSystem .LowLevel
Assembly: Unity.InputSystem.dll
Syntax
public struct MouseState : IInputStateTypeInfo
Fields
buttons
Button mask for which buttons on the mouse are currently pressed.
Declaration
public ushort buttons
Field Value
Type | Description |
---|---|
ushort | Button state mask. |
See Also
clickCount
Number of clicks performed in succession.
Declaration
public ushort clickCount
Field Value
Type | Description |
---|---|
ushort | Successive click count. |
See Also
delta
Screen-space motion delta of the mouse in pixels.
Declaration
public Vector2 delta
Field Value
Type | Description |
---|---|
Vector2 | Mouse movement. |
See Also
displayIndex
The index of the display that was moused.
Declaration
public ushort displayIndex
Field Value
Type | Description |
---|---|
ushort |
position
Screen-space position of the mouse in pixels.
Declaration
public Vector2 position
Field Value
Type | Description |
---|---|
Vector2 | Position of mouse on screen. |
See Also
scroll
Scroll-wheel delta of the mouse.
Declaration
public Vector2 scroll
Field Value
Type | Description |
---|---|
Vector2 | Scroll wheel delta. |
See Also
Properties
Format
Memory format identifier for MouseState.
Declaration
public static FourCC Format { get; }
Property Value
Type | Description |
---|---|
Four |
Returns "MOUS". |
See Also
format
Returns Format.
Declaration
public FourCC format { get; }
Property Value
Type | Description |
---|---|
Four |
See Also
Methods
WithButton(MouseButton, bool)
Set the button mask for the given button.
Declaration
public MouseState WithButton(MouseButton button, bool state = true)
Parameters
Type | Name | Description |
---|---|---|
Mouse |
button | Button whose state to set. |
bool | state | Whether to set the bit on or off. |
Returns
Type | Description |
---|---|
Mouse |
The same MouseState with the change applied. |