LCStepState

Objective-C

enum LCStepState : NSUInteger {}

Swift

enum LCStepState : UInt, @unchecked Sendable

State of LCStep

  • Activated hadling conditions of step scenario

    Declaration

    Objective-C

    LCStepStarted

    Swift

    case started = 0
  • Collecting user actions according to step scenario

    Declaration

    Objective-C

    LCStepInProgress

    Swift

    case inProgress = 1
  • In case interaction reached it’s top state and now begin to return to the original state. For example when the head is turned to the left to the required angle and now user begins to turn his head to the original position

    Declaration

    Objective-C

    LCStepBackward

    Swift

    case backward = 2
  • Step processing is finished

    Declaration

    Objective-C

    LCStepFinished

    Swift

    case finished = 3