Hi! This is unfortunately an issue with many plugins on macOS (searching for the error message in the Forums or AnswerHub will return many results). The problem is that our plugin (StereoPanoramicPlayer
) is loaded by the editor before a required engine plugin dependency (ProceduralMeshComponent
) causing this system loading error.
A possible workaround is to change the loading phase of the plugin:
-
find the installation directory of the Plugin (it should be in
<UE_ROOT_INSTALL>/Engine/Plugins/Marketplace/StereoPanoramicPlayer
) -
edit the file
StereoPanoramicPlayer.uplugin
and change the row"LoadingPhase": "Default",
into
"LoadingPhase": "PostDefault",
Let me know if this solves your issue.