Advertisement
Nocturnalverse

ClockMod Config

Apr 13th, 2021
1,630
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ## Settings file was created by plugin Clock Mod v1.4.3
  2. ## Plugin GUID: aedenthorn.ClockMod
  3. ## mxyVersion 2021-04-13-1510 (Y-M-D-HHmm)
  4.  
  5. [General]
  6.  
  7. ## Nexus mod ID for updates
  8. # Setting type: Int32
  9. # Default value: 85
  10. NexusID = 85
  11.  
  12. ## Extra modifier key used to toggle the clock display. Leave blank to not require one. Use https://docs.unity3d.com/Manual/ConventionalGameInput.html
  13. # Setting type: String
  14. # Default value:
  15. ShowClockKeyMod =
  16.  
  17. ## Key used to toggle the clock display. use https://docs.unity3d.com/Manual/ConventionalGameInput.html
  18. # Setting type: String
  19. # Default value: home
  20. ShowClockKey = F15
  21.  
  22. ## Location on the screen to show the clock (x,y) or (x%,y%)
  23. # Setting type: String
  24. # Default value: 50%,3%
  25. ClockLocationString = 50%,3%
  26.  
  27. ## Enable this mod
  28. # Setting type: Boolean
  29. # Default value: true
  30. Enabled = true
  31.  
  32. ## Show the clock?
  33. # Setting type: Boolean
  34. # Default value: true
  35. ShowClock = true
  36.  
  37. ## Only show the clock when the time changes?
  38. # Setting type: Boolean
  39. # Default value: false
  40. ShowClockOnChange = false
  41.  
  42. ## If only showing on change, length in seconds to show the clock before begining to fade
  43. # Setting type: Single
  44. # Default value: 5
  45. ShowClockOnChangeFadeTime = 5
  46.  
  47. ## How long fade should take in seconds
  48. # Setting type: Single
  49. # Default value: 1
  50. ShowClockOnChangeFadeLength = 1
  51.  
  52. ## Set to true to specify the name of a font from your OS; otherwise limited to fonts in the game resources
  53. # Setting type: Boolean
  54. # Default value: false
  55. ClockUseOSFont = false
  56.  
  57. ## Add a shadow behind the text
  58. # Setting type: Boolean
  59. # Default value: false
  60. ClockUseShadow = false
  61.  
  62. ## Shadow offset in pixels
  63. # Setting type: Int32
  64. # Default value: 2
  65. ClockShadowOffset = 2
  66.  
  67. ## Name of the font to use
  68. # Setting type: String
  69. # Default value: AveriaSerifLibre-Bold
  70. ClockFontName = Norsebold
  71.  
  72. ## Location on the screen in pixels to show the clock
  73. # Setting type: Int32
  74. # Default value: 24
  75. ClockFontSize = 32
  76.  
  77. ## Font color for the clock
  78. # Setting type: Color
  79. # Default value: FFFFFFFF
  80. ClockFontColor = FF8800FF
  81.  
  82. ## Color for the shadow
  83. # Setting type: Color
  84. # Default value: 000000FF
  85. ClockShadowColor = 000000FF
  86.  
  87. ## If true, limit clock display to when the hotkey is down
  88. # Setting type: Boolean
  89. # Default value: false
  90. ShowClockKeyOnPress = false
  91.  
  92. ## Time format; set to 'fuzzy' for fuzzy time
  93. # Setting type: String
  94. # Default value: HH:mm
  95. ClockFormat = HH:mm
  96.  
  97. ## Formatted clock string - {0} is replaced by the actual time string, {1} is replaced by the fuzzy string, {2} is replaced by the current day
  98. # Setting type: String
  99. # Default value: <b>{0}</b>
  100. ClockString = <b>{0}</b>
  101.  
  102. ## Clock text alignment.
  103. # Setting type: TextAnchor
  104. # Default value: MiddleCenter
  105. # Acceptable values: UpperLeft, UpperCenter, UpperRight, MiddleLeft, MiddleCenter, MiddleRight, LowerLeft, LowerCenter, LowerRight
  106. ClockTextAlignment = MiddleCenter
  107.  
  108. ## Fuzzy time strings to split up the day into custom periods if ClockFormat is set to 'fuzzy'; comma-separated
  109. # Setting type: String
  110. # Default value: Midnight,Early Morning,Early Morning,Before Dawn,Before Dawn,Dawn,Dawn,Morning,Morning,Late Morning,Late Morning,Midday,Midday,Early Afternoon,Early Afternoon,Afternoon,Afternoon,Evening,Evening,Night,Night,Late Night,Late Night,Midnight
  111. ClockFuzzyStrings = Midnight,Early Morning,Early Morning,Before Dawn,Before Dawn,Dawn,Dawn,Morning,Morning,Late Morning,Late Morning,Midday,Midday,Early Afternoon,Early Afternoon,Afternoon,Afternoon,Evening,Evening,Night,Night,Late Night,Late Night,Midnight
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement