public void NextStep()
 {
     if (currentStep < currentInstructionModel.GetCount() - 1)
     {
         currentStep++;
         CurrentInstructionUpdate();
     }
 }
 void Start()
 {
     Debug.Log("STEP COUNT: " + currentInstructionModel.GetCount());
     currentStep = 0;
     CurrentInstructionUpdate();
 }