I have a ball that falls in the game. I spawn in via c++ using spawn actor at a position of 0, 0, 1000. Inside the ball blue print I have one static mesh which is the ball.
In the game, I de-posses the player with F8 and look at the position of the ball. If I click on the ball when it’s on the floor which is at 0 Z, the details say the location is still 1000 Z. I’m thinking the mesh is falling and not taking the actor with it? I’m new to unreal and am uncertain why the Z value isn’t 0 when on the floor.
The whole point of this is to use a PhysicsHandle to pick up the ball but there seems to be an offset of where I’m setting the target location on the handle and where the actual static mesh of the ball is.
Please help!