Failed to load c++ class (plugin) after editor restart

After hours of troubleshooting I found out that I had to set the LoadingPhase of the plugin module to PreDefault instead of Default

"Modules": [
	{
		"Name": "Framework",
		"Type": "Runtime",
		"LoadingPhase": "PreDefault"
	}
]
3 Likes