0
votes
1answer
83 views

UNITY Lose one life when player hits the water

I want to change the number of lives every time the player hits the water. I wrote this code so far: public var dieSound:AudioClip; static var lives = 3; function Start () { } function Update () { ...
-1
votes
1answer
108 views

Using raycast how to make player run between two colliders without colliding in unity3d? [closed]

I am trying to let the player run on a path between two colliders on either sides using the accelerometer. I want my player to come back to the center after colliding with the sidewalls when I tilt ...
0
votes
0answers
66 views

Unity3D first person collision removal

I am trying to make my first Unity 3D project. I have a First Person set to collide with a Torch, then the Torch should be deleted, but nothing happens. The Collider function is never being called. ...
0
votes
1answer
76 views

Collision with Capsule Collider [duplicate]

I am using two character.I am using Character controler on both of them.But i have place capsule and capsule collider on these character as well. But i want the collision will detect when capsule are ...
0
votes
1answer
56 views

Can trigger enter be directional i.e trigger enter to happen only in one side and not on all sides of a collider in unity3d?

In my game the player running in forward direction on a path triggers the collider to instantiate the enemies, when the same player comes in opposite direction and triggers the collider i dont want ...
1
vote
1answer
234 views

Collision detection between two character controllers

I am new to Unity and scripting. I have two players and both are using a character controller. I have done this thing I have used onControllerColliderHit function. I have print the name like this ...
0
votes
1answer
159 views

Collision detection between characters in Unity3D

I am working on 3D fighting game and I am using Unity3D as my game engine. I have a scene, two characters who work very fine and I can control it with my keyboard. But now the problem is in the ...
0
votes
1answer
71 views

Movement of Character through Script

I have created two simple animation and apply simple capsule collider having fricitionless material.Now when these meshes collide with each other then a function called and its give me a message on ...
0
votes
0answers
278 views

Cannot Check Collisions -Unity

I am currently developing an AI demo for a fighting game using Unity game engine. I wrote an OnTriggerEnter that detects fists or kicks; however it detects actions if and only if the characters move. ...
2
votes
1answer
165 views

OnTriggerEnter() not called

I have a player (sphere) and 4 enemies (capsules). All enemies have a character controller added. They also all have a child GameObject, which has a RigidBody (no mass, no gravity) and a Box Collider ...
0
votes
1answer
252 views

Unity 3D collision detection for object totally within another object

I'm working on a game project right now, and I'm confused by the collision detection system in unity. It seems that when a object is totally within another object, say a small capsule is within a ...
0
votes
1answer
890 views

function OnCollisionEnter() not working unity

I am using javascript and I have no idea why but the OnCollisionEnter Function never calls, even when logging it in unity3d. Is there an alternative or a reason why this is happening? By the way I am ...
1
vote
1answer
357 views

Want to use iTween for 2d floor collision in Unity 3D

I'm making a simple 2d side scrolling game using Unity 3D. When I say 2d I mean it will appear 2d, all background assets will be 2d but the main character will be 3d. What I want is an uneven floor ...
1
vote
0answers
621 views

Unity3D: Collisions, Getting the Normal of the Collision Surface (Not the Angle of Impact)

I'm working on my first Unity project right now (a bit of a self prescribed crash-course) and I've run into a slight issue. I'm trying deflect one object off of another one (via collision). For now, ...
1
vote
2answers
2k views

Unity3D First Person Controlller Collision detection

I am trying to have a First Person Controller collide with a cube. Both the cube and controller have a rigidbody applied, with Is Kinematic set to false, they are physically colliding, but none of my ...
1
vote
2answers
7k views

OnCollisionEnter not working in Unity3d

I have a problem with my onCollisionEnter function in Unity3d. The thing is i have a 3rd person controller who if collides with a boudary object should activate another gameobject and a label. this ...
1
vote
1answer
2k views

Collision between two character controller

Hello everyone I am new in unity. I create two character on my project. They can move easily. But the problem is I cannot make collision between them. Please help me. Give me some code.....
2
votes
1answer
1k views

How to find which side of a collider has been hit from hit.normal?

In Unity3d, i can get the normal of the surface with which the collider collides using hit.normal, but is there a way to find which side has been hit what is provided bu Unity3d? One solution is to ...
5
votes
3answers
3k views

Problem with collision detection of a fast moving ball with a racket controlled by mouse

In unity, i have a racket which is supposed to hit a ball, and the racket is controlled directly by the mouse, i.e the bat is being moved by the mouse using mouse axes and the using ...
0
votes
2answers
696 views

Colliding an object

I'm taking my first steps through Unity, as a follow up to this question: http://answers.unity3d.com/questions/56697/isometric-game-camera-limits I now realized that I don't know how to make a ...
1
vote
2answers
2k views

Fast moving object passing through other objects

I am pretty new to unity3d and making a small example. actually i have a cube which moves with my arrow keys. now i have walls on the road i want my object to hit the wall but it pass through the ...