コード例 #1
0
 public void Invert()
 {
     _up = !_up;
     transform.Rotate(-10, 0, 0);
     PlayerPrefs.SetInt("UIStyle", (PlayerPrefs.GetInt("UIStyle") + 1) % 2);
     if (newPageRef != null)
     {
         newPageRef.SetStyle(PlayerPrefs.GetInt("UIStyle"));
     }
 }