hi @CreativeLead ,
The problem could be in your project load module which is in the your Project .
We will use assume this filename is called"Test" for this Test.uproject. Look in the project root directory.
The problem is you may have a module load request at the front of your
“Test.uproject.”
This needs to be edited with a basic text editor Mac equivalent of Win10 Notepad.
and the module entry removed
"FileVersion": 3,
"EngineAssociation": "5.3",
"Category": "",
"Description": "",
"Modules": [
{
"Name": "MagicBulletLooks",
"Type": "Runtime",
"LoadingPhase": "Default",
"AdditionalDependencies": [
"Engine"
]
}
],
"Plugins": [
Now the file looks like
"FileVersion": 3,
"EngineAssociation": "5.3",
"Category": "",
"Description": "",
"Plugins": [
Save and exit the editor and restart Engine editor.
If this still has a problem, then the error lies in the plugin code
The file MagicBulletLooks.uplugin in the directory Engine → Plugins → MagicBulletLooks
Open this in the text editor
"Modules": [
{
"Name": "MagicBulletLooks",
"Type": "Editor",
"LoadingPhase": "PostDefault",
"PlatformAllowList": [
"Win64",
"Mac",
"Linux"
]
Check that “Mac” is in the PlatformAllowedList if so
Just remove the section as you did previously then try again in the editor.
If this starts properly something is wrong with Magic Bullet Suite 2024.0.0 code and you need to log a support call
Send this information and your screen dump and this will make it quicker to fix for 5.3.1
using the “Submit a Request” and hopefully you can login and report the problem.