Converting a transform into different coordinate space
Transforms can be moved between coordinate spaces via the Compose function. For example, if you have a transform in the local coordinate space of an actor, and you want to convert it to world space…
FTransform WorldSpace = LocalSpaceTransform * GetActorTransform();
Note that the order of variables matters when composing transforms, and changing the order yields different results.