Vixen
02b45cc4
csharp
public enum InputInteractionResult

What an interaction decided this frame.

No guide page documents this yet — the page shows what the code says about itself.

Remarks

Flags rather than one value, because a press both starts and performs on the same frame and collapsing that into a single "performed" would leave a UI that listens for Started — to show a charge bar — with nothing to hear.

Fields and properties (4)

  • None

    Nothing happened.

  • Started

    The interaction began: the control was actuated and is now being watched.

  • Performed

    The interaction's condition was met.

  • Canceled

    The interaction ended without being met, or the control was released after it was.

Used by (9)

  • HoldInteractionVixen.Input
  • IInputInteractionVixen.Input
  • InputActionVixen.Input
  • MultiTapInteractionVixen.Input
  • PassThroughInteractionVixen.Input
  • PressInteractionVixen.Input
  • SlowTapInteractionVixen.Input
  • TapInteractionVixen.Input
  • ValueInteractionVixen.Input