Example #1
0
 public ExportSection() : base(nameof(ExportSection), false)
 {
     Path      = BindPath(nameof(Path), "%StreamingAssets%");
     Languages = BindStringArray(nameof(Languages), DefaultLanguages);
     Text      = BindBoolean(nameof(Text), false);
     Graphics  = BindBoolean(nameof(Graphics), false);
     Audio     = BindBoolean(nameof(Audio), false);
     Field     = BindBoolean(nameof(Field), false);
     Battle    = BindBoolean(nameof(Battle), false);
 }
Example #2
0
 public FontSection() : base(nameof(Font), false)
 {
     Names = BindStringArray(nameof(Names), DefaultFonts);
     Size  = BindInt32(nameof(Size), 24);
 }