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
-1
Question by wakkydude · Feb 24, 2014 at 11:40 PM · javascriptif-statementsnoobif

If/else statements working one way, and not the other

This piece of code has been used in an earlier question about if statements - this is not a repost, it's a separate problem. This issue really only goes down to a small amount of syntax in a certain loop.

I currently have in my racing game two triggers. One of these opens up a door and the other starts a new lap. The trigger that opens the door simply opens the door with no questions asked and doesn't start a new lap. The new lap button does open the door as well as starting a new lap, and through looking at the syntax (and being new at Javascript) I cannot work out exactly what the issue is. This is the relevant snippet of code.

  function OnTriggerEnter(gameObject : Collider)
 {
 if(gameObject.tag == "NewLap")
 {
 lap += 1;
 if(lapTime<fastestLap)
 {
 fastestLap = lapTime;
 }
 lapTime=0;
 }
 else if(gameObject.tag == "DoorOpener")
 {
 Door.animation.Play("Door_Open");
 yield WaitForSeconds(5);
 Door.animation.Play("Door_close");
 }
 }

I would have thought the "else if" line says that if only if the tag is not "NewLap" will it open the door. The item tagged as NewLap is doing both. What have I done wrong in my formatting?

Comment
Add comment · Show 10
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
avatar image tw1st3d · Feb 24, 2014 at 11:43 PM 0
Share

Try changing

 } else if(gameObject.tag == "DoorOpener") {

to

 } else {
avatar image wakkydude · Feb 24, 2014 at 11:44 PM 0
Share

The door's still being opened by the lap collider when I do that

avatar image tw1st3d · Feb 24, 2014 at 11:53 PM 0
Share

Sounds like you have more than one script that is telling the door to open, or the two triggers are on top of each other, triggering them both.

avatar image wakkydude · Feb 24, 2014 at 11:59 PM 0
Share

Ahh, I forgot about some lines I wrote back when I first tried to make the door open (it was one of the first things I did to my car script). I dug into the car script, found another thing that talked about the door and colliders, and now it's gone and the colliders are working again. Thanks.

avatar image Dblfstr · Feb 25, 2014 at 12:48 AM 0
Share

I don't see how the code above will open the door on "NewLap"

Show more comments

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

23 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

Related Questions

flying should only be possible while fuel 0 < but it continues so long as space is held 2 Answers

My if statements are not working [major noob] 2 Answers

(NOOB Q) Whats wrong with my script? Two if's? 3 Answers

Can someone help me fix my Javascript for Flickering Light? 6 Answers

musket gun script is not working 3 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