Skip to content

Instantly share code, notes, and snippets.

@realityforge
Forked from MilkyEngineer/Minimal-5.2.uproject
Created September 3, 2023 21:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save realityforge/5e730a1e498ea4378db891fabb70ba05 to your computer and use it in GitHub Desktop.
Save realityforge/5e730a1e498ea4378db891fabb70ba05 to your computer and use it in GitHub Desktop.
Minimal project descriptor that "Disables Engine Plugins by Default" for Unreal Engine
{
"FileVersion": 3,
"EngineAssociation": "5.2",
"Description": "Minimum viable plugin dependencies for a usable Unreal Engine project",
"DisableEnginePluginsByDefault": true,
"Plugins": [
{
"Name": "PluginBrowser",
"Enabled": true
},
{
"Name": "EngineAssetDefinitions",
"Enabled": true
},
{
"Name": "ContentBrowserFileDataSource",
"Enabled": true
},
{
"Name": "ContentBrowserAssetDataSource",
"Enabled": true
},
{
"Name": "ContentBrowserClassDataSource",
"Enabled": true
},
{
"Name": "ContentBrowserAliasDataSource",
"Enabled": true
},
{
"Name": "PropertyAccessNode",
"Enabled": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment