Introduction This post is a part of the tutorial series in which we are taking a look at creating a C++ plugin that will be cross-compatible with both Unreal Engine as well as Unity3D. We have completed two parts of the series so far where we have set up the plugin to have delegates that … Continue reading Set Up SQLite in C++ Plugin For UE4 and Unity3D – Part 1
UE4 C++ DLL
Import C++ Plugin into Unreal Engine 4
In the previous post, we created a simple plugin in C++ that we exported into a DLL. This DLL plugin takes 2 integers and adds them together and returns the sum back. In this post, we will import the DLL from the plugin project into a new UE4 project and access its functionality. Project Set-Up: … Continue reading Import C++ Plugin into Unreal Engine 4