We've moved!

Starting from MRTK 2.6, we are publishing both conceptual docs and API references on docs.microsoft.com. For conceptual docs, please visit our new landing page. For API references, please visit the MRTK-Unity section of the dot net API explorer. Existing content will remain here but will not be updated further.

Search Results for

    Show / Hide Table of Contents

    Struct InputActionRuleDualAxis

    Generic Input Action Rule for raising actions based on specific criteria.

    Implements
    IInputActionRule<Vector2>
    Inherited Members
    ValueType.Equals(Object)
    ValueType.GetHashCode()
    ValueType.ToString()
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetType()
    Namespace: Microsoft.MixedReality.Toolkit.Input
    Assembly: cs.temp.dll.dll
    Syntax
    [Serializable]
    public struct InputActionRuleDualAxis : IInputActionRule<Vector2>

    Constructors

    InputActionRuleDualAxis(MixedRealityInputAction, MixedRealityInputAction, Vector2)

    Constructor.

    Declaration
    public InputActionRuleDualAxis(MixedRealityInputAction baseAction, MixedRealityInputAction ruleAction, Vector2 criteria)
    Parameters
    Type Name Description
    MixedRealityInputAction baseAction

    The Base Action that the rule will listen to.

    MixedRealityInputAction ruleAction

    The Action to raise if the criteria is met.

    Vector2 criteria

    The criteria to check against for determining if the action should be raised.

    Properties

    BaseAction

    The Base Action that the rule will listen to.

    Declaration
    public MixedRealityInputAction BaseAction { get; }
    Property Value
    Type Description
    MixedRealityInputAction

    Criteria

    The criteria to check against for determining if the action should be raised.

    Declaration
    public Vector2 Criteria { get; }
    Property Value
    Type Description
    Vector2

    RuleAction

    The Action to raise if the criteria is met.

    Declaration
    public MixedRealityInputAction RuleAction { get; }
    Property Value
    Type Description
    MixedRealityInputAction

    Implements

    IInputActionRule<T>
    In This Article
    Back to top Generated by DocFX