ERROR: Remote compiling requires a server name. Use the editor (Project Settings > IOS) to set up your remote compilation settings
这样的错误,主要就是针对你这个插件可应用到的平台,只需要在插件UPlugin下面下把IOS平台去掉,
具体如下:
{
“FileVersion” : 3,
.
. (omitted for brevity)
.
“Modules” :
[
{
“Name” : “YourModule”,
“Type” : “Runtime”,
“LoadingPhase” : “Default”,
“WhitelistPlatforms” :
[
“Win64”,
“Android”
]
},
{
“Name” : “YourEditorModule”,
“Type” : “Editor”,
“LoadingPhase” : “PreDefault”,
“WhitelistPlatforms” :
[
“Win64”
]
}
]
}