SettingData.cs 600 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. namespace Dance
  3. {
  4. [Serializable]
  5. public class SettingData
  6. {
  7. public int Voltage = 3;
  8. public Product_Mgr.AudienceState Audience = Product_Mgr.AudienceState.Many;
  9. public Product_Mgr.ProductRank Product = Product_Mgr.ProductRank.Normal;
  10. public bool IsSEPlay = true;
  11. public Appeal_Mgr.CutInGrade CutInGrade;
  12. public bool IsDepthOfFieldOn = true;
  13. public bool IsblackBGon;
  14. public int NoteOccurTiming;
  15. public bool IsNoteEffectLight;
  16. public bool UndressFaceOn = true;
  17. public float NoteJudgeTiming;
  18. public bool FPSCamMode;
  19. public bool AllRelease;
  20. }
  21. }