I’m trying to run UE4.27 in centos. when create a new project, it failed with “failed to load module ‘BlackmagicMedia’”. so i’m hoping to disable it in same config file, but cannot find one, anyone know where to find it?
PS: not the uproject file in the created file.
I do not understand, what you mean by “not the uproject file in the created file”. The way to get rid of unused modules is to edit the uproject file.
Take a look into the uproject file using your favorite text editor. Here you will find the modules and remove those, you do not want to get loaded. Make a backup first just in case
Edit: here is an example: removing the module from the modules section should do the job.
{
"FileVersion": 3,
"EngineAssociation": "4.26",
"Category": "",
"Description": "",
"Modules": [
{
"Name": "InventoryTest2",
"Type": "Runtime",
"LoadingPhase": "Default",
"AdditionalDependencies": [
"Engine"
]
}
]
}
Ah, ok, I understand. Never got into that situation…
enable:false in template.
in my case: Templates/TP_ME_BlankBP
2 Likes