-
Notifications
You must be signed in to change notification settings - Fork 0
*ModFeatureDef
BBLKepling edited this page May 28, 2023
·
3 revisions
The Harmony patches included in this framework are optional and need to be enabled in the ModFeatureDef to use. Currently there are 2 patches, and they can be enabled by putting the associated string in the features list. The strings are not case sensitive as they are converted to lower case.
Just like any other Def, make sure that your defName is unique, otherwise Defs may overwrite and features may not be enabled.
<GNATFramework.ModFeatureDef>
<defName>Example_defName</defName>
<features>
<li>GenerateWithEquip</li>
<li>ShootOneUseInvCheck</li>
</features>
</GNATFramework.ModFeatureDef>
Code Lineage: ModFeatureDef is basically a copy of the ModDef from legodude17's Multi Verb Combat Framework, though significantly simplified.