Example #1
0
 public void SwitchCameraHorizontal(UIPanel.MovementDirection direction)
 {
     Assert.IsTrue(direction == UIPanel.MovementDirection.Left || direction == UIPanel.MovementDirection.Right);
     selectedPosition = CameraPanel.SwitchPositionHorizontal(selectedPosition);
     panelController.PositionPanel(selectedPosition, direction);
 }
Example #2
0
 void SwitchPanelHorizontal()
 {
     currentSelection = (ButtonSelection)CameraPanel.SwitchPositionHorizontal((CameraPanel.DisplayPosition)currentSelection);
 }