In my case, I was using the wrong way of constructing a UObject in the constructor. I was using NewObject
but I needed to be using CreateDefaultSubobject
. This post on SO set me straight.
1 Like
In my case, I was using the wrong way of constructing a UObject in the constructor. I was using NewObject
but I needed to be using CreateDefaultSubobject
. This post on SO set me straight.