Hello there,
I'm trying to work out how to return a value of the impact force created when my spaceship hits the ground, however, I only want to consider the vector at a tangent to the point of impact.
I have experimented with the Store Force parameter in Collision Event, and Collision Event Plus, but the stored value is accumulative of all vectors, so gives me an unusable result. I've also tried Get Collision Info, with Relative Velocity & Contact Normal, but I can't get the data I need.
And I've looked into Vector Magnitude, but I have no idea what to do with it.
Here's some clarity...

My space ship is whizzing along at 440, and gracefully descending at 30. If the space ship makes contact at point A on the ground, the Y vector (30) is the considered factor, and it does no damage, and the ship can carry on skimming the surface (imagine it has little wheels, or skids). However, if the ship slams into the edge of the ground plane at point B, the X vector (440) is used and the ship takes massive damage.
At the moment, when I swoop my little ship along the ground, it takes massive damage as the Force is using both X and Y. Make sense?
Basically, I want to return a single float value (not vector3 variable) that I can use to determine if, and how much, damage the ship takes when it makes contact with the ground.
As always, thank you in advance for any help.
Cheers.