I’ve never used FTransforms before – maybe there is something quirky about FTransforms that I don’t know about that interferes with Blueprints. What are you using the FTransform for? Typically FTransforms are used for low-level 3D transformations from one space to another. I see that you are using it in a Pawn. Are you trying to get the Pawn’s location? If so, you should use a FVector.
Thats wierd. In console during play mode type in “displayall Car MyTransform” this will display realtime value state on screen and see what happens to it
i need store a pawn’s location and rotation,so i use a FTransform to store them both.maybe i should try use a Vector and a Rotator,i think this will work.