Struct InputActionRuleDigital
Generic Input Action Rule for raising actions based on specific criteria.
Implements
Inherited Members
Namespace: Microsoft.MixedReality.Toolkit.Input
Assembly: cs.temp.dll.dll
Syntax
[Serializable]
public struct InputActionRuleDigital : IInputActionRule<bool>
Constructors
InputActionRuleDigital(MixedRealityInputAction, MixedRealityInputAction, Boolean)
Constructor.
Declaration
public InputActionRuleDigital(MixedRealityInputAction baseAction, MixedRealityInputAction ruleAction, bool 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. |
Boolean | 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 bool Criteria { get; }
Property Value
Type | Description |
---|---|
Boolean |
RuleAction
The Action to raise if the criteria is met.
Declaration
public MixedRealityInputAction RuleAction { get; }
Property Value
Type | Description |
---|---|
MixedRealityInputAction |