コード例 #1
0
ファイル: UiManager.cs プロジェクト: jacob568/Keepy-Hoopies
 /// <summary>
 /// Toggles the flip of the controls
 /// </summary>
 public void toggleFlipControl()
 {
     if (swapControls.isOn)
     {
         PlayerPersistence.FlipControlsToggle(true);
     }
     else
     {
         PlayerPersistence.FlipControlsToggle(false);
     }
 }