Quantcast
Viewing all articles
Browse latest Browse all 28

Instantiate and allocate a UObject from class in C++

In Unreal Engine 4 the C++ method for instantiating a new UObject is the NewObject<T>() constructor.

auto myObject = NewObject<MyObjectClass>();


Viewing all articles
Browse latest Browse all 28

Trending Articles