Mod articles
-
Installation
UE4SS v3 experimental (requirement)
Download UE4SS experimental : UE4SS_v3.0.1-*-*.zip
- Steam: unzip the UE4SS archive into (GameInstallDir)\Astro\Binaries\Win64\
More information:
- https://docs.ue4ss.com/dev/installation-guide.html (Official Installation Guide)
- UE4SS Discord Server Invite
Mod
- Steam: unzip the mod archive into (GameInstallDir)\Astro\Binaries\Win64\ue4ss\Mods\
How to find the game install directory in Steam? Right click on the game > Manage > Browse local files.
You can copy options.example.lua (if exists) to options.lua otherwise it will be automatically copied on first run.
Example of an installation on the Steam version of the ... -
EDIT: From version 0.4.0, the params files are in methods\smoothen\presets\ folder. The file structure may also be different.
In this example, we have a params.lua file with this content:
---@type Method__Smoothen__PARAMS
return {
DEBUG_OBJECTS = true,
CIRCLES = {
{
RADIUS = 1,
HITS = 12,
},
{
RADIUS = 0.5,
HITS = 10,
},
{
RADIUS = 0.25,
HITS = 8,
},
},
MAX_OFFSET = 500.0,
TRACE_LENGTH = 300.0,
}
There are 3 circles. DEBUG_OBJEC...