Getting surface normal from collision
When a collision event is triggered, you are returned a list of contact points, from which you can get normals. Unity's manual describes this as the "Normal of the contact point." Not very descriptive....
View ArticleDrawing a line along all Contact Points?
Just a quickie. How does one edit a LineRenderer so that it touches all the points in an array produced by a finding all Contact Points of an object. For example, this should effectively create a ring...
View ArticleHow to use Contact Points to change direction of Ball
Hello, I'm trying to build a simple Breakout game and I'm trying to get the ball to change direction depending on where it hit the paddle. Here is the code I have at the moment. Sorry if it seems...
View ArticleHow to control OnTriggerEnter() and Reflect() depending on the direction of...
Hey, so I have a scene where a ball will bounce off of a line drawn by a user. As it is, when the ball hits the line, I just call the reflect function in unity. What I've noticed, is that occasionally...
View ArticleProblem with contact point
Hi, I tried this script just to get an idea of how contact point works: using UnityEngine; using System.Collections; public class CraneCollisions : MonoBehaviour { void OnCollisionEnter(Collision...
View Articlecontacts.normal question
Hi there, I'm trying to check contact point normals when a collisions occur. I basically have an if statement that checks if the contacts.normal.y is not equal to zero. The problem is whether the...
View ArticleOnTrigger AI projectile detection and turn.
Ok I need to get my AI to notice bullets being shot into his line of sight and him. He has 2 colliders, one is a trigger which is the vision collider and the other is the capsule collider on the AI...
View ArticleMake something happen when touch cube C#
I am very new to C# and scripting in general. How would I make something happen when one object touches another object instead of just instantly?
View ArticleRead / Write to phone's contact list.
Hi there I've been asked to firstly: 1. Read the list of contacts on a device. 2. Add contacts to the device's list. Does anyone have any idea on how this may be achieved with Unity?
View ArticleOnCollisionStay contactPoint2D problem
I'm trying to figure out where my character is while he's colliding with an object by using the contactPoint but it seems like contactPoint is calculated only once ![alt text][1] [1]:...
View Articlecontact.normal not updating in OnCollisionStay2D
I'm trying to apply a force to a ball-like object that is parallel to the surface that it is currently contacting. I'm doing this by getting the normal of the contact point, then taking the cross...
View ArticleTrigger single collision event
For my game, I have multiple game objects for all of those I attached single collision detection script. When object collides with other object two OnCollisionEnter method executed because each object...
View ArticleWrong ContactPoint position when modifying velocity
I'm working on a game where we have spaceships, and they can behave in two different ways when it comes to applying forces. **Space:** We apply a force in the local forward direction. It pushes the...
View ArticleHow to specify two game objects are in contact in 2D?
I am trying to add physics to a bike object with hindge joints connected to wheels now i need to add force on back wheel when i press up button this should happen only when bike is in contact with...
View ArticleReturned string values of thisCollider.name and otherCollider.name swap
The returned string values of thisCollider.name and otherCollider.name swap with each other in a seemingly random and inconsistent manner. I have a simple set up. I have a character that consists of a...
View ArticleHow do I get a collision's contact normal without using any non-kinematic...
I want to have a ball bounce off of different surfaces (static colliders and a couple of kinematic rigidbodies) without using actual rigidbody physics. The only problem is that OnTriggerEnter gives you...
View ArticleHow do I find the point of contact on a box collider?
I'm performing a little bit of simple practice in unity. As a start I'm trying to recreate pong as a start. But I ran into a little problem, what I want to do is have the ball go in a certain direction...
View ArticleOnCollisionStay2D - why is the list of contacts is incomplete?
Hey all, Here is my code: void OnCollisionStay2D (Collision2D col) { for (int i = 0; i < col.contacts.Length; i++) { ... blah blah ... Debug.DrawRay(p1,a1,Color.white); print ("Ima colliding"); } }...
View ArticleHow to use Best of contactPoints2d
i am new, advanced thanks for help, i want to ask question that i am developing a game like a spider man when we throw a rope to any collider then i want that rope will be attached with hingejoint2d...
View Article