how can i enable a plugin in configfiles ? atm my editor crashs on startup im sure i need to enable a plugin…
the problem appeared after i updated my project to version of an team member
solved it by:
- reverting to an working version
- checkout the plugin only
- start the engine enable the plugin
- checkout the source/content
would be still nice to know were the engine saves which plugins are enabled
you can edit the uproject file:
e.g.
{
“FileVersion”: 3,
“EngineAssociation”: “4.27”,
“Category”: “”,
“Description”: “”,
“Modules”: [
{
“Name”: “xxxxxxx”,
“Type”: “Runtime”,
“LoadingPhase”: “Default”,
“AdditionalDependencies”: [
“Engine”
]
}
],
“Plugins”: [
{
“Name”: “GameplayAbilities”,
“Enabled”: true
}
]
}
1 Like