Skip to main content

Collision/Trigger

An overview of how to use OnCollision and OnTrigger functions.
Which almost all games have. Ha..

What I'll Talk about..

Collision
OnCollisionEnter - OnCollisionEnter is called when this collider/rigidbody has begun touching another rigidbody/collider.

OnCollisionExit - OnCollisionExit is called when this collider/rigidbody has stopped touching another rigidbody/collider.

Trigger
OnTriggerEnter - OnTriggerEnter is called when the Collider other enters the trigger.

OnTriggerExit - OnTriggerExit is called when the Collider other has stopped touching the trigger.

So when you use On Collision function, you can generate info about the collision. This info could be stuff like the contact point we collided, the thing we collided with, and with what velocity we collided with. Read more here.

The function I use the most is OnCollisionEnter. Its great for explosions and such. So how to call it is,

function OnCollisionEnter (){
        //your code here
}

If you want to check the tag of what the object, you do this


function OnCollisionEnter (hit:Collision){
        if(hit.collider.tag == "tag name"){
                //your code here
        }
}

OnCollisionExit would be called by this.. 

function OnCollisionExit(){
        //How hard was that?
}

To make an object a trigger, you'd first click on a object that contains a collider. Look in the Inspector Pane and find the collider component. Under that would be a thing called Is Trigger. You check it. That easy.




When something is a trigger, it's going to move through objects.

OnTriggerEnter to me would be good for bullets, example:

function OnTriggerEnter(hit:Collider){
        if(hit.tag != "thin wall"){
                Destroy (gameObject);
        }
}

This script would be attatched to the bullet. The bullet would be a trigger. The script goes and checks if what the bullet collided with was tagged as thin wall. If it is not a this wall, then the bullet would be destroyed. Though if it is a thin wall, the bullet would simply go through it. 

OnTriggerExit would just be called like this...

function OnTriggerExit(){
        ///your code here
}

On Trigger events are only sent if:
  1. Both objects have colliders attached.
  2. One object has a rigid body attached.


Comments

Popular posts from this blog

How To Make a Hellish Looking Sky Box

I came across this problem while constructing my scene of Hell in a little project I've been working on, and could not find a reasonable sky box on the web for what I want. Maybe I was not looking hard enough, but I ended up making nice substitute. If you think the sky box looks familiar, then your right. The Sky box I'm using is already packaged with Unity3D! To import the sky boxes Unity has made for you,  simply go to Assets>Import Package>Skyboxes.  The sky boxes will appear in your projects tab under a folder named "Standard Assets". To make this sky box, first you must find the folder containing all the sky box materials and open it up. In it will be a list of sky boxes for your disposal. To get this skybox, I decided to tweak the "StarryNight Skybox" (But the "MoonShine Skybox" looks pretty cool also!).  Select the sky box and view it under the inspector tab. Underneath the properties there will be a tint color variable allowin

Making A Laser Pointer

Want a frieking lazer pointer? BOOM. Attach a Line Renderer component to the object you have the script below attached to. (Component> Miscellaneous>Line Renderer) Code: function Update () { var lineRenderer : LineRenderer = GetComponent(LineRenderer); lineRenderer.useWorldSpace = false; lineRenderer.SetVertexCount(2); var hit : RaycastHit; Physics.Raycast(transform.position,transform.forward,hit); if(hit.collider){ lineRenderer.SetPosition(1,Vector3(0,0,hit.distance)); } else{ lineRenderer.SetPosition(1,Vector3(0,0,5000)); } } @script RequireComponent(LineRenderer) Thank  3dDude for the script. Original Source here .

Handling Music and Sound Effects In Your Games

Initiative  While developing Treva's Adventure I had to figure out a way to handle multiple music tracks and sound effects in a clean manner or suffer horribly.  What was going to help me achieve a simple solution was taking all the different sounds and centralizing them in a single class in order to black box them.   Any other code trying to play a sound wouldn't even know the sound file's name.   All code trying to play a music track would reference a enum that defines all the track names. Defining The Class Creating The Enum When I first started defining types in my enumeration,  I was naming the types to be exactly like the file name.  For a scary sound effect I had found a file named "ghost breath".  So around my code would be scattered lines like SoundManager.Play(SoundEffectType.GhostBreath);  This was fine until I found a sound that better fit the situation it was being used in,  and decided to use "ghost breath" for a different s