Nav apraksta
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

IDevelopmentSettings.cs 683B

123456789101112131415161718192021
  1. using System;
  2. namespace UnityEngine.AdaptivePerformance
  3. {
  4. /// <summary>
  5. /// Use the developer settings interface to access and change settings which are available only in development mode.
  6. /// </summary>
  7. public interface IDevelopmentSettings
  8. {
  9. /// <summary>
  10. /// Returns true if logging was enabled in StartupSettings.
  11. /// </summary>
  12. bool Logging { get; set; }
  13. /// <summary>
  14. /// Adjust the frequency in frames at which the application logs frame statistics to the console.
  15. /// This is only relevant when logging is enabled.
  16. /// </summary>
  17. int LoggingFrequencyInFrames { get; set; }
  18. }
  19. }