Describe the bug
Using the plugin in a C++ Windows project causes the following compile error: AssimpFunctionLibrary.h(67): error C2039: 'UpdateResourceW': is not a member of 'UTexture2D'
To Reproduce
Simply install the plugin as per the instructions in the wiki and use it in a C++ project. Calling UpdateResource() on any Texture2D object causes the error. The bug can easily be solved by #undef UpdateResource somewhere before line 67 in AssimpFunctionLibrary.h is evaluated.
Describe the bug
Using the plugin in a C++ Windows project causes the following compile error:
AssimpFunctionLibrary.h(67): error C2039: 'UpdateResourceW': is not a member of 'UTexture2D'To Reproduce
Simply install the plugin as per the instructions in the wiki and use it in a C++ project. Calling
UpdateResource()on anyTexture2Dobject causes the error. The bug can easily be solved by#undef UpdateResourcesomewhere before line 67 inAssimpFunctionLibrary.his evaluated.