闪退后错误代码:
Object(const FObjectInitializer&) constructor called but it’s not the object that’s currently being constructed with NewObject. Maybe you are trying to construct it on the stack, which is not supported.
原因:
在C++脚本中有声明Actor或ActorComponent等对象,初始化错误。
解决:
声明是使用指针 *Actor *ActorComponent
https://www.saoniuhuo.com/question/detail-2568082.html