コード例 #1
0
 public Settings( Settings other )
 {
     seVolume = other.seVolume;
     bgmVolume = other.bgmVolume;
     life = other.life;
     windowStyle = other.windowStyle;
     Screen.fullScreen = this.windowStyle == GameDefine.WindowStyle.FullScreen;
 }
コード例 #2
0
 public static void Remove()
 {
     settings = null;
 }
コード例 #3
0
 public void Apply( Settings other )
 {
     instance = new Settings( other );
 }
コード例 #4
0
 public static void Default()
 {
     settings = new SaveData.Settings();
 }