Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by AlexYancey · May 10, 2014 at 03:39 AM · collidertriggervelocitydirectiongrid

Switching between areas in a scene with triggers

Hi, a group of friends and I are making a game in Unity Free for a programming competition. In the game, it is separated by areas, like in a grid system. Each area represents an object so far that has 4 parameters (areaNorth, areaEast, areaWest, areaSouth). Each area is four sided and has a box collider cube that IsTrigger on each side. My problem is figuring out OnTriggerEnter() which "direction" I am going so I can switch to the north, east, west, or south adjacent areas. I've tried using the rigidbody.velocity.x and checking whether it's above zero but it's too inaccurate to actually be able to tell which global direction I'm going. Note, I want to be able go through any collider facing any direction and have it change correctly (for example, walking through the east collider transports me to the east area whether I am walking backward, sideways, or forward through it).

This is my East to West code (I check whether the box collider is a vertical or horizontal trigger so it only keeps track of two of the directions).

public class East_West : MonoBehaviour { public Rigidbody player; public enum VerticalTriggerDirection { East, West }; public VerticalTriggerDirection playerDirection;

 // Use this for initialization
 void Start()
 {
     GameObject cube = GameObject.Find("Graphics");
     player = cube.rigidbody;
 }

 // Update is called once per frame
 void Update()
 {
     if (player.velocity.normalized.x > 0)
         playerDirection = VerticalTriggerDirection.East;
     else if (player.velocity.normalized.x < 0)
         playerDirection = VerticalTriggerDirection.West;
 }

}

Here is my Trigger Code which I attach to the Vertical Colliders public class TriggerVert : MonoBehaviour { private GameControl hub = new GameControl(); public East_West direction; private int currentArea; private int[] possibleExits; private int areaNext;

             // Use this for initialization
             void Start()
             {
                 currentArea = hub.GetArea();
                 possibleExits = hub.GetPossibleExits(currentArea);
             }
     
             void OnTriggerEnter(Collider other)
             {
     
                 if ((int)direction.playerDirection == 0)
                     areaNext = possibleExits[1];
                 else if ((int)direction.playerDirection == 1)
                     areaNext = possibleExits[2];
     
                 //Debug.Log(areaNext);
     
                 if (areaNext != -1)
                 {
                     currentArea = areaNext;
                     hub.SetArea(currentArea);
                     Debug.Log(hub.GetArea());
                 }
                 
             }
 }
Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

20 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Creating a 68x68 grid of trigger cubes 2 Answers

Set Object Rotation based on Collision (2D) 0 Answers

Can't click gameobject when over another trigger? 1 Answer

Why is there still drag when drag is 0? 0 Answers

Moving kinematic rigidbody trigger against kinematic rigidbody collider 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges