您的位置:首页 > 其它

Unreal Engine Plugin management

2015-05-23 12:25 211 查看
Be aware to remove any dependencies to any modules related to Editor,

or else it will end up with failure of packaging.

#if WITH_EDITOR

#endif

is your good friend.

for developing purpose, just copy plugins' "Editor-blabla.dll" to developers' engine plugin folder for them to use.

programmer team get the project.exe built and link with plugin dlls before pushing to GIT, then it's built in CI server.

in other word, the project's exe file has to be built with all dependent plugins' source code but not only static library.

maybe I can find a way that we can simply copy the plugins' static libraries back to plugins folder for specific folder and kick off the build,

but I don't want to spend more time on it since the whole day has been wasted to explore the stupid settings.

That also means, the project has to be a C++ project but not Blueprint-Only project.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: