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 /
  • Help Room /
avatar image
0
Question by Vaulcul · Dec 16, 2020 at 12:22 AM · variablesreset

How can I reset a variable for the opposite labeled object?

Hi there!

I'm working on a game with a 2D overworld map built out of tiles using Unity's tilemap system. While the character traverses the map, a manager gleans what kind of terrain (Desert, Plains, Forest, Hills, etc.) the character is walking over.

This works decently right now with what I have.

However, I have a situation where I need two tilemaps to overlap on occasion, I have both overlapping tiles correctly being "sensed", but when I leave an area that is overlapping, the opposing layer data doesn't reset to "NONE".... Honestly, it's probably because my code isn't telling it to reset, but... I've been around the block trying to figure out how to get the layers to reset correctly AND keep the correct data.

To be a bit more specific, I provide both overlapping layers their own tags (Region and UnRegion (Un for Under)), I then look at whether the trigger has one of these tags and then request the region type from the tile gameObject.

How would I get this to reset the data to "NONE" for the opposing tagged object once one of the regions are no longer overlapping?

Here's the code in question:

 void OnTriggerExit2D(Collider2D other)
 {
     if (other.CompareTag("Region"))
     {
         region = other.gameObject.GetComponent<RegionData>().regionType;
     }
 
     if (other.CompareTag("UnRegion"))
     {
         //region = RegionData.RegionType.NONE;  
         unregion = other.gameObject.GetComponent<RegionData>().regionType;
     }
 }
 
 void OnTriggerEnter2D(Collider2D other)
 {
     if (other.CompareTag("Region"))
     {
         region = other.gameObject.GetComponent<RegionData>().regionType;
     }
     if (other.CompareTag("UnRegion"))
     {
         unregion = other.gameObject.GetComponent<RegionData>().regionType;
     }
 }


Thanks for the assistance in advance.

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

1 Reply

· Add your reply
  • Sort: 
avatar image
0
Best Answer

Answer by Vaulcul · Dec 16, 2020 at 06:39 PM

I think I figured this out.

The code that ended up doing what I needed is:

 void OnTriggerExit2D(Collider2D other)
     {
         if (other.CompareTag("Region"))
         {
             region = RegionData.RegionType.NONE;    
         }
 
         if (other.CompareTag("UnRegion"))
         {
             unregion = RegionData.RegionType.NONE;            
         }
     }
     
     void OnTriggerStay2D(Collider2D other)
     {
         if (other.CompareTag("Region"))
         {
             region = other.gameObject.GetComponent<RegionData>().regionType;
         }
 
         if (other.CompareTag("UnRegion"))
         {
             unregion = other.gameObject.GetComponent<RegionData>().regionType;
         }
     }
Comment
Add comment · Share
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

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

214 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 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 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 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 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 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 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 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 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 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 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

Resetting the level without changing variables 0 Answers

[SOLVED]bool is getting reset by no reason 2 Answers

R = reset ? 1 Answer

Space Shooter tutorial game won't restart 1 Answer

I need to fix a problem where my money resets when i continue to the next level 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