[Solved] Unreal Engine 4 with Qt Creator
-
I have seen some tutorials and pages about using UE4 with Qt Creator.
for example: https://wiki.unrealengine.com/Using_QtCreator_With_UnrealEngine4
If I want to use Qt Creator with Unreal Engine can I access the Qt library, for example QString, QStringList, etc...?
Can I use the Signal/Slot mechanism or just standard C++? -
Hi,
The answer is no. I think the UE4 framework is auto-sufficient to develop your game with C++11.
You can see inside the MyQtProject.pro file, he removes Qt from dependencies.
@CONFIG -= qt@
The line above implies you cannot use Qt to access at the Qt framework and you can't use signal and slot mechanism.
But, you can try out by yourself.
Best regards,
William.