- Home /
How to apply in opposite direction to transform?
I am attempting to create a script which needs force to be applied in an opposite direction to a transform when the transform collides with something. The amount of force is determined by a force calculator. The thing I am having trouble with is setting the vector to be the exact opposite way that the transform is facing. It should give direction as if it is bouncing against the ground. e.g. if the transform is at 180 then the force goes in direction 360 and if transform is equal to 90 then the force goes 270. If at all possible I would like this to be done in C# terms. Thanks in advance.
this is some sudo code this could do the trick.
vector2 moveDirection - vector2 moveDirection *2;
Answer by ajkolenc · Jul 22, 2014 at 09:39 PM
I think there is some confusion here about the way a "transform is facing". The orientation of a transform can't be described as a single degree, but rather 3 degrees, one for each axis.
It seems like the thing you are looking for is transform.forward
. This is a vector that points in the local z-axis of a transform, which is often used as the way a transform is "facing". So if you are trying to apply a force in the opposite direction of its facing:
rigidbody.AddForce(-transform.forward * forceStrength);
You can't just apply forces directly to transforms, so you'll need to add a rigidbody component to whatever you are adding the force to.
Sorry, I didnt make myself clear. I'm working in 2d perspective and two of the three angles always stay the same. What you describe may indeed be correct but can I ask what the same would be for y and x? Thanks for all your help.
Also, thanks for the reference code it has removed all errors from my script that my other methods created. Thanks a million. Scott
Your answer
Follow this Question
Related Questions
Set Velocity at relative position. 2 Answers
Empty GameObjects fly away. 2 Answers
Rigidody.velocity = Direction * speed; How to get direction? 1 Answer
object move towards to mouse position 0 Answers
MousePosition Offset 0 Answers