LCStepState
Objective-C
enum LCStepState : NSUInteger {}
Swift
enum LCStepState : UInt, @unchecked Sendable
State of LCStep
-
Activated hadling conditions of step scenario
Declaration
Objective-C
LCStepStartedSwift
case started = 0 -
Collecting user actions according to step scenario
Declaration
Objective-C
LCStepInProgressSwift
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
LCStepBackwardSwift
case backward = 2 -
Step processing is finished
Declaration
Objective-C
LCStepFinishedSwift
case finished = 3