Usage of unsupported types and structures

Sure!
The only things you can’t do are tie it into the engine and refelection system; and thus you can’t expose them to blueprints.

The biggest headaches here are that you are working in the standard C++ world and must do your own memory management; and that you’ll have to make conversion methods to transfer any data from the non-engine exposed portions to the engine exposed portions.

Your other option, since UE4 is completely open source, is that you can build support for the types you want to use into the engine; and if you want to be really nice you can commit that to the engine proper and then all UE4 developers can benefit.

Hi there! I’m pretty new to UE4, currently writing my first code in c++ and I have question regarding unsupported types and how will they behave, should I even concider them.

For example I have a code, using std::vector. I understand, that I can not add any UPROPERTY() to it, no question here, but will it work as part of a code that is not exposed to Editor? Can I include for example TinyXML as part of my project if I don’t expose any types, functions or just any part of it’s code to Editor?

Thank you.