Loading

Paste #p4nwmwqv8

  1. in english.txt
  2.  
  3. STR_CONFIG_SETTING_SLOW_TIME_FACTOR                             :{LTBLUE}Slow time factor: {ORANGE}{STRING2}
  4. STR_CONFIG_SETTING_SLOW_TIME_FACTOR_HELPTEXT                    :Slow down the time in game. Default 1 is normal speed. Higher values make time in game run slower.
  5.  
  6. settings_type.h
  7. uint16   slow_time_factor;               ///< How fast the time passes. Higher values the slower it pass. Default 1 normal speed
  8. at the struct GameCreationSettings
  9.  
  10. settings_gui.cpp
  11.  
  12. environment->Add(new SettingEntry("game_creation.slow_time_factor"));
  13.  
  14. settings.ini
  15. [SDT_VAR]
  16. base     = GameSettings
  17. var = game_creation.slow_time_factor
  18. type     = SLE_UINT16
  19. from     = 200
  20. def      = 1
  21. min      = 1
  22. max      = 365
  23. interval = 1
  24. str      = STR_CONFIG_SETTING_SLOW_TIME_FACTOR
  25. strval   = STR_JUST_INT
  26. cat      = SC_BASIC

Comments