public void SwitchState(ICameraState state)
 {
     _State.OnExit();
     _State = state;
     _State.OnEnter();
 }