Advertisement
Guest User

PlantEasily default config as of 1.7.0

a guest
Oct 29th, 2023
585
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.65 KB | None | 0 0
  1. ## Settings file was created by plugin PlantEasily v1.7.0
  2. ## Plugin GUID: advize.PlantEasily
  3.  
  4. [Controls]
  5.  
  6. ## Key to toggle on/off all mod features. See https://docs.unity3d.com/ScriptReference/KeyCode.html
  7. # Setting type: KeyboardShortcut
  8. # Default value: F8
  9. EnableModKey = F8
  10.  
  11. ## Key to toggle on/off piece snapping functionality. See https://docs.unity3d.com/ScriptReference/KeyCode.html
  12. # Setting type: KeyboardShortcut
  13. # Default value: F10
  14. EnableSnappingKey = F10
  15.  
  16. ## Key to increase number of grid columns. See https://docs.unity3d.com/ScriptReference/KeyCode.html
  17. # Setting type: KeyboardShortcut
  18. # Default value: RightArrow
  19. IncreaseXKey = RightArrow
  20.  
  21. ## Key to increase number of grid rows. See https://docs.unity3d.com/ScriptReference/KeyCode.html
  22. # Setting type: KeyboardShortcut
  23. # Default value: UpArrow
  24. IncreaseYKey = UpArrow
  25.  
  26. ## Key to decrease number of grid columns. See https://docs.unity3d.com/ScriptReference/KeyCode.html
  27. # Setting type: KeyboardShortcut
  28. # Default value: LeftArrow
  29. DecreaseXKey = LeftArrow
  30.  
  31. ## Key to decrease number of grid rows. See https://docs.unity3d.com/ScriptReference/KeyCode.html
  32. # Setting type: KeyboardShortcut
  33. # Default value: DownArrow
  34. DecreaseYKey = DownArrow
  35.  
  36. ## Modifier key when using keyboard controls. See https://docs.unity3d.com/ScriptReference/KeyCode.html
  37. # Setting type: KeyboardShortcut
  38. # Default value: RightControl
  39. KeyboardModifierKey = RightControl
  40.  
  41. ## Modifier key when using gamepad controls. See https://docs.unity3d.com/ScriptReference/KeyCode.html
  42. # Setting type: KeyboardShortcut
  43. # Default value: JoystickButton4
  44. GamepadModifierKey = JoystickButton4
  45.  
  46. ## Modifier key to enable bulk harvest when using keyboard controls. See https://docs.unity3d.com/ScriptReference/KeyCode.html
  47. # Setting type: KeyboardShortcut
  48. # Default value: LeftShift
  49. KeyboardHarvestModifierKey = LeftShift
  50.  
  51. ## Key to toggle on/off the [Harvesting]ReplantOnHarvest setting. See https://docs.unity3d.com/ScriptReference/KeyCode.html
  52. # Setting type: KeyboardShortcut
  53. # Default value: None
  54. ToggleAutoReplantKey =
  55.  
  56. [General]
  57.  
  58. ## Enable mod debug messages in console.
  59. # Setting type: Boolean
  60. # Default value: false
  61. EnableDebugMessages = false
  62.  
  63. ## Number of rows for planting grid aka height.
  64. # Setting type: Int32
  65. # Default value: 2
  66. Rows = 2
  67.  
  68. ## Number of columns for planting grid aka width.
  69. # Setting type: Int32
  70. # Default value: 2
  71. Columns = 2
  72.  
  73. ## Enables all mod features.
  74. # Setting type: Boolean
  75. # Default value: true
  76. ModActive = true
  77.  
  78. ## Enables grid snapping feature.
  79. # Setting type: Boolean
  80. # Default value: true
  81. SnapActive = true
  82.  
  83. ## Prevents placement of resources when any placement ghosts are invalid for any reason.
  84. # Setting type: Boolean
  85. # Default value: true
  86. PreventPartialPlanting = true
  87.  
  88. ## Prevents plants from being placed where they will be unable to grow.
  89. # Setting type: Boolean
  90. # Default value: true
  91. PreventInvalidPlanting = true
  92.  
  93. ## Randomizes rotation of pieces once placed.
  94. # Setting type: Boolean
  95. # Default value: true
  96. RandomizeRotation = true
  97.  
  98. ## Consume stamina for every piece placed.
  99. # Setting type: Boolean
  100. # Default value: true
  101. UseStamina = true
  102.  
  103. ## Decrease durability of cultivator for every piece placed.
  104. # Setting type: Boolean
  105. # Default value: true
  106. UseDurability = true
  107.  
  108. ## Adds extra spacing between crops. Accepts negative values to decrease spacing (not recommended).
  109. # Setting type: Single
  110. # Default value: 0
  111. ExtraCropSpacing = 0
  112.  
  113. ## Adds extra spacing between saplings. Accepts negative values to decrease spacing (not recommended).
  114. # Setting type: Single
  115. # Default value: 0
  116. ExtraSaplingSpacing = 0
  117.  
  118. ## Determines grid snapping style. Intelligent will attempt to prevent a new grid from overlapping with an old one. Legacy will allow any orientation of new rows and columns.
  119. # Setting type: GridSnappingStyle
  120. # Default value: Intelligent
  121. # Acceptable values: Intelligent, Legacy
  122. GridSnappingStyle = Intelligent
  123.  
  124. ## When set to true, this setting will prevent the diagonal snapping of new grids to existing grids.
  125. # Setting type: Boolean
  126. # Default value: true
  127. StandardizeGridRotations = true
  128.  
  129. ## Allows for tighter grids, but with varying spacing used between diverse/distinct plants.
  130. # Setting type: Boolean
  131. # Default value: false
  132. MinimizeGridSpacing = false
  133.  
  134. ## When set to true, new grid placements will have their column and row directions align with the global grid.
  135. # Setting type: Boolean
  136. # Default value: true
  137. GloballyAlignGridDirections = true
  138.  
  139. [Harvesting]
  140.  
  141. ## Enables the ability to harvest multiple resources at once.
  142. # Setting type: Boolean
  143. # Default value: true
  144. EnableBulkHarvest = true
  145.  
  146. ## Determines bulk harvest style. LikeResources only harvests resources of the type you've interacted with. AllResources harvests all eligible resources.
  147. # Setting type: HarvestStyle
  148. # Default value: AllResources
  149. # Acceptable values: LikeResources, AllResources
  150. HarvestStyle = AllResources
  151.  
  152. ## Determines radius used to search for resources when bulk harvesting.
  153. # Setting type: Single
  154. # Default value: 3
  155. HarvestRadius = 3
  156.  
  157. ## Enables automatic replanting of crops when harvested, provided you have the resources.
  158. # Setting type: Boolean
  159. # Default value: false
  160. ReplantOnHarvest = false
  161.  
  162. [Pickables]
  163.  
  164. ## Determines default distance/spacing between pickable resources when planting.
  165. # Setting type: Single
  166. # Default value: 1
  167. PickableSnapRadius = 1
  168.  
  169. ## Determines distance/spacing between berry bushes when planting.
  170. # Setting type: Single
  171. # Default value: 1.5
  172. BerryBushSnapRadius = 1.5
  173.  
  174. ## Determines distance/spacing between mushrooms when planting.
  175. # Setting type: Single
  176. # Default value: 0.5
  177. MushroomSnapRadius = 0.5
  178.  
  179. ## Determines distance/spacing between flowers when planting.
  180. # Setting type: Single
  181. # Default value: 1
  182. FlowerSnapRadius = 1
  183.  
  184. ## Prevents placement of pickable resources on top of colliding obstructions.
  185. # Setting type: Boolean
  186. # Default value: true
  187. PreventOverlappingPlacements = true
  188.  
  189. [UI]
  190.  
  191. ## Update resource cost in build UI.
  192. # Setting type: Boolean
  193. # Default value: true
  194. ShowCost = true
  195.  
  196. ## Determines display style of the ShowCost setting. TotalCount shows total number of pieces to be placed. FullCost shows combined resoure cost of all pieces.
  197. # Setting type: CostDisplayStyle
  198. # Default value: TotalCount
  199. # Acceptable values: TotalCount, FullCost
  200. CostDisplayStyle = TotalCount
  201.  
  202. ## Determines whether to prepend or append text to the resource cost in build UI. LeftSide or RightSide will prepend or append respectively.
  203. # Setting type: CostDisplayLocation
  204. # Default value: RightSide
  205. # Acceptable values: LeftSide, RightSide
  206. CostDisplayLocation = RightSide
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement