Blueprint to C++ and Engine Freezing?

You are going way to deep.

The error is telling you that you don’t have the proper operator== for “const FTransform”

Meaning you probably have

FORCEINLINE bool operator==(FTransform LTransform, FTransform RTransform)

but not also a

FORCEINLINE bool operator==(const FTransform LTransform, const FTransform RTransform)

1 Like