scenario

Current.scenario 를 통해 현재 사용 중인 시나리오에 대한 정보를 알 수 있다.

Untitled

Current.scenario.id //  id 
Current.scenario.title // title text

step

Current.Step 을 통해 현재 스텝에 대한 정보를 알 수 있다.

Untitled

// StepHistory Step1 -> Step2 -> Step3

Current.step.id  //Step3
Current.step.prev.id //Step2

//Step을 재시작 한다. Step의 생명주기 중 Init 부터 시작함.
Current.step.restart()