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
Unity3D
Displaying Logs: Unity3D Set-up
This post is a continuation of the series where we are looking into creating a C++ plugin that is meant to store data in SQLite3 database for both Unity3D and Unreal Engine 4.
Displaying Logs: Setting up C++ plugin for Delegates in Unity3D and UE4
Introduction and Use Case: In the first part of this series, we have implemented a basic function in C++ that can be called from Unity3D or from Unreal Engine 4. Through this simple function, we have seen how to send arguments to the plugin and also to get the return value back into unity. This … Continue reading Displaying Logs: Setting up C++ plugin for Delegates in Unity3D and UE4
Import C++ Plugin into Unity3D
In this post, we will import the C++ plugin into a new Unity3D project and access the functionality.
Simple C++ Plugin for Unity3D and Unreal Engine 4
In this post we will create a basic C++ project, compile a simple function into a DLL.