Advertisement
theatesttest

Untitled

Apr 21st, 2025
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.01 KB | None | 0 0
  1. [Debug]
  2.  
  3. ;Enable additional debug logging.
  4. Debug-Log-Enable = false
  5.  
  6.  
  7. [RayCastConfig]
  8.  
  9. ;Use ray casting to detect where grass shouldn't grow (inside rocks or roads).
  10. Ray-cast-enabled = true
  11.  
  12. ;The distance above grass that must be free. 200 is slightly more than player height.
  13. Ray-cast-height = 150.000000
  14.  
  15. ;The distance below grass that must be free.
  16. Ray-cast-depth = 5.000000
  17.  
  18. ;Which collision layers to check when raycasting. Not recommended to change unless you know what you're doing. These are collision layer index from CK separated by space.
  19. Ray-cast-collision-layers = 1 2 13 20 31
  20.  
  21. ;Which objects will raycast ignore. This can be useful if you want grass to still grow from some objects (such as roads).The format is formid : formfile separated by; for example "1812A:Skyrim.esm;1812D:Skyrim.esm" would add RoadChunkL01 and RoadChunkL02 forms to ignore list. Base forms go here not object references !
  22. Ray-cast-ignore-forms =
  23.  
  24. ;Which landcape textures raycast will check for. This can be useful if you want to prevent grass from growing on certain landscape textures (such as roads textures from Northern Roads). The format is formid : formfile separated by; for example "425FE:Northern Roads.esp;2D5520:Northern Roads.esp" would add COTN_LRoadStone01 and COTN_LRoadDirt01Trail77 forms to the texture list to check. Lanscape textures go here not texturesets !
  25. Ray-cast-texture-forms =
  26.  
  27. ;The distance from the grass in each direction that should be checked as well as the point under the grass for the land texture(s) specified in Ray-cast-texture-forms.
  28. Ray-cast-texture-width = 5.000000
  29.  
  30. ;Use ray casting to detect dirt cliffs and place grass on them
  31. Grass-cliffs-enabled = true
  32.  
  33. ;The forms of the dirt cliffs in the game that will be converted to grass cliffs.
  34. Grass-cliffs-forms = 22763:Skyrim.esm;1EF4A:Skyrim.esm;5B887:Skyrim.esm;1EF4B:Skyrim.esm;D1EC2:Skyrim.esm;5B82C:Skyrim.esm;5B7E1:Skyrim.esm;5B7E2:Skyrim.esm;1EF3C:Skyrim.esm;5B7DE:Skyrim.esm;5B7E3:Skyrim.esm;B8D38:Skyrim.esm;5092D:Skyrim.esm;BAD90:Skyrim.esm;50928:Skyrim.esm;5092B:Skyrim.esm;BC5CB:Skyrim.esm;50931:Skyrim.esm;13303:Skyrim.esm;135e2:Skyrim.esm;16d5f:Skyrim.esm;13976:Skyrim.esm;13a5b:Skyrim.esm;13974:Skyrim.esm;d37c0:Skyrim.esm;61924:Skyrim.esm;61925:Skyrim.esm;61923:Skyrim.esm;d1ec3:Skyrim.esm;24e48:Skyrim.esm;4d709:Skyrim.esm;3acd3:Skyrim.esm;4d715:Skyrim.esm;6e0dd:Skyrim.esm;42a88:Skyrim.esm;55a69:Skyrim.esm;55a6b:Skyrim.esm;55a6d:Skyrim.esm;6a8c8:Skyrim.esm;6a8c9:Skyrim.esm;8a03e:Skyrim.esm;56ad2:Skyrim.esm;56ad5:Skyrim.esm;56acd:Skyrim.esm;56ad7:Skyrim.esm;56ad8:Skyrim.esm;56ad9:Skyrim.esm;b018b:Skyrim.esm;b018a:Skyrim.esm;b0187:Skyrim.esm;b425e:Skyrim.esm;b0189:Skyrim.esm;b0188:Skyrim.esm;b018c:Skyrim.esm;b018a:Skyrim.esm;b018e:Skyrim.esm;b425f:Skyrim.esm;b0191:Skyrim.esm
  35.  
  36. Debug-Log-Enable = true
  37.  
  38. [GrassConfig]
  39.  
  40. ;Enable much more grass without having to change mod files.
  41. Super-dense-grass = false
  42.  
  43. ;How the super dense mode is achieved. Not recommended to change for normal play. This does nothing unless you enable SuperDenseGrass setting.7 is normal game(meaning nothing is actually changed), 6 or less would be much less grass, 8 is dense, 9 is ?, 10 + is probably crash city.
  44. Super-dense-mode = 8
  45.  
  46. ;Whether to track how much time is taken to generate grass. Whenever you open console the result is reported. Try disabling all settings except profiler, go to game and in main menu 'coc riverwood', after loading open console to see normal game time. Then enable settings and check again how it changed. Remember to coc from main menu instead of loading save because it might not be accurate otherwise.
  47. Profiler-report = false
  48.  
  49. ;This will generate cache files in /Data/Grass/ and use those when we have them. Any time you change anything with your mod setup you must delete the contents of that directory so new cache can be generated or you will have bugs like floating grass or still grass in objects(that were changed by mods).
  50. Use-grass-cache = false
  51.  
  52. ;Set true if you want to enable extended grass distance mode. This will allow grass to appear outside of loaded cells.Relevant ini settings : SkyrimPrefs.ini[Grass] fGrassStartFadeDistance
  53. Extend-grass-distance = false
  54.  
  55. ;Allow more grass to be made in total. This is needed if you use very dense grass or have large draw distance. Otherwise it will reach a limit and just stop making grass leaving weird empty squares.
  56. Extend-grass-count = true
  57.  
  58. ;Makes sure that the max grass types per texture setting is set to at least this much. Can be useful to make sure your INI isn't being overwritten by anything. Most grass replacer mods require this. Set 0 to disable any verification.
  59. Ensure-max-grass-types-setting = 7
  60.  
  61. ;Overwrite fGrassStartFadeDistance from any INI. If this is zero or higher then the grass distance will always be taken from this configuration instead of any INI.This can be useful if you have a million things overwriting your INI files and don't know what to edit, so you can just set it here. For example 7000 is vanilla highest in-game grass slider. If you want to set higher you need to enable ExtendGrassDistance setting as well or it will not look right in - game. What the setting actually means is that grass will start to fade out at this distance. Actual total grass distance is this value + fade range value.
  62. Overwrite-grass-distance = 6000.000000
  63.  
  64. ;Overwrite fGrassFadeRange from any INI. If this is zero or higher then the grass fade range will always be taken from this configuration instead of any INI. This determines the distance it takes for grass to completely fade out starting from OverwriteGrassDistance(or fGrassStartFadeDistance if you didn't use the overwrite). If you want the grass fade out to not be so sudden then increase this value.Probably recommended to keep this at least half of the other setting.
  65. Overwrite-grass-fade-range = 3000.000000
  66.  
  67. ;Overwrite iMinGrassSize from any INI. If this is zero or higher then the grass density setting (iMinGrassSize) will be taken from here instead of INI files. Lower values means more dense grass. 50 or 60 is normal mode with somewhat sparse grass(good performance).Lowering the value increases density !20 is very high density. You should probably not set lower than 20 if you decide to change it. The grass form density setting itself still mostly controls the actual density of grass, think of iMinGrassSize more of as a cap for that setting.
  68. Overwrite-min-grass-size = -1
  69.  
  70. ;Apply this scale to every piece of grass everywhere. For example 0.5 makes all grass pieces half the size it should be.
  71. Global-grass-scale = 1.000000
  72.  
  73. ;This will change how grass works. It means grass can only ever be loaded from files and not generated during play.
  74. Only-load-from-cache = false
  75.  
  76. ;When pre-generating grass then skip worldspaces with this editor IDs. This can greatly speed up generating if we know the worldspace will not need grass at all.
  77. Skip-pregenerate-world-spaces = DLC2ApocryphaWorld;DLC01Boneyard;WindhelmPitWorldspace
  78.  
  79. ;If this is not empty then skip every worldspace that isn't in this list.
  80. Only-pregenerate-world-spaces =
  81.  
  82. ;Enable grass compatibility mode with DynDOLOD Grass LODs. Valid values: 0 = Disabled; 1 = Display grass only in active cells(without fade) and let DynDOLOD handle inactive cell Grass; 2 = Display grass only in active cells and large ref loaded cells(without fade) and let DynDOLOD handle grass outside of large ref cells
  83. DynDOLOD-Grass-Mode = 0
  84.  
  85. ;Maximum number of attempts to generate a grass cache before skipping a cell.
  86. Max-Failures = 2
  87.  
  88. ;Enable or disable the freeze check that is run while generating a grass cache. Recommended to leave enabled unless the message repeately appears.
  89. Freeze-check-enabled = true
  90.  
  91. ;If you are generating a cache for a worldspace you have not generated yet, set this true. Otherwise, the cache files in your grass folder will be deleted. If you are updating a worldspace, then move all files you do not want to be deleted to a new folder and replace the old files in the folder once you have generated new cache files. Then rename/move the folder back.
  92. Updating-Cache = false
  93.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement