Class CursorModifier
Component that can be added to any GameObject
with a Collider to
modify the IMixed
Namespace: Microsoft.MixedReality.Toolkit.Input
Assembly: cs.temp.dll.dll
Syntax
public class CursorModifier : MonoBehaviour, ICursorModifier, IMixedRealityFocusChangedHandler, IEventSystemHandler
Properties
CursorNormalOffset
Direction of the IMixed
Declaration
public Vector3 CursorNormalOffset { get; set; }
Property Value
Type | Description |
---|---|
Vector3 |
CursorParameters
IMixed
Declaration
public AnimatorParameter[] CursorParameters { get; }
Property Value
Type | Description |
---|---|
Animator |
CursorPositionOffset
How much a IMixed
Declaration
public Vector3 CursorPositionOffset { get; set; }
Property Value
Type | Description |
---|---|
Vector3 |
CursorScaleOffset
Scale of the IMixed
Declaration
public Vector3 CursorScaleOffset { get; set; }
Property Value
Type | Description |
---|---|
Vector3 |
HideCursorOnFocus
Should the IMixed
Declaration
public bool HideCursorOnFocus { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
HostTransform
Transform for which this IMixed
Declaration
public Transform HostTransform { get; set; }
Property Value
Type | Description |
---|---|
Transform |
SnapCursorPosition
Should the IMixed
Declaration
public bool SnapCursorPosition { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
UseGazeBasedNormal
If true, the normal from the pointing vector will be used to orient the IMixed
Declaration
public bool UseGazeBasedNormal { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
Methods
GetCursorVisibility()
Indicates whether the IMixed
Declaration
public bool GetCursorVisibility()
Returns
Type | Description |
---|---|
Boolean | True if IMixed |
GetModifiedPosition(IMixedRealityCursor)
Declaration
public Vector3 GetModifiedPosition(IMixedRealityCursor cursor)
Parameters
Type | Name | Description |
---|---|---|
IMixed |
cursor |
Returns
Type | Description |
---|---|
Vector3 |
GetModifiedRotation(IMixedRealityCursor)
Returns the IMixed
Declaration
public Quaternion GetModifiedRotation(IMixedRealityCursor cursor)
Parameters
Type | Name | Description |
---|---|---|
IMixed |
cursor | IMixed |
Returns
Type | Description |
---|---|
Quaternion | New rotation for the IMixed |
GetModifiedScale(IMixedRealityCursor)
Returns the IMixed
Declaration
public Vector3 GetModifiedScale(IMixedRealityCursor cursor)
Parameters
Type | Name | Description |
---|---|---|
IMixed |
cursor | IMixed |
Returns
Type | Description |
---|---|
Vector3 | New local scale for the IMixed |
GetModifiedTransform(IMixedRealityCursor, out Vector3, out Quaternion, out Vector3)
Returns the modified Transform for the IMixed
Declaration
public void GetModifiedTransform(IMixedRealityCursor cursor, out Vector3 position, out Quaternion rotation, out Vector3 scale)
Parameters
Type | Name | Description |
---|---|---|
IMixed |
cursor | Cursor that is being modified. |
Vector3 | position | Modified position. |
Quaternion | rotation | Modified rotation. |
Vector3 | scale | Modified scale. |
Explicit Interface Implementations
IMixedRealityFocusChangedHandler.OnBeforeFocusChange(FocusEventData)
Focus event that is raised before the focus is actually changed.
Declaration
void IMixedRealityFocusChangedHandler.OnBeforeFocusChange(FocusEventData eventData)
Parameters
Type | Name | Description |
---|---|---|
Focus |
eventData |
Remarks
Useful for logic that needs to take place before focus changes.
IMixedRealityFocusChangedHandler.OnFocusChanged(FocusEventData)
Focus event that is raised when the focused object is changed.
Declaration
void IMixedRealityFocusChangedHandler.OnFocusChanged(FocusEventData eventData)
Parameters
Type | Name | Description |
---|---|---|
Focus |
eventData |