• 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 /
This question was closed May 25, 2013 at 09:06 AM by Fattie for the following reason:

Duplicate Question

avatar image
0
Question by Psycho8Vegemite · May 25, 2013 at 06:36 AM · animationaudiobooleandoor

Door script not completely working help!

hey there. my script here is really annoying me because when ever i put it on a door and the tags and that are working but it keeps on looping only the (!stat) and i can't get it to switch to (stat). it would be greatly appreciated if someone could help fix this script, thanks

 public var stat : boolean;
 public var able : boolean;
 var open : AudioClip;
 var clos : AudioClip;
 
 function Awake () {
 
  if(stat){
  
    animation.Play("openstat");
  
  }
 
 }
 
 function OnTriggerEnter( other : Collider ) {
 
    if(other.tag == ("Player")){
    
      able = true;
    
    }
 
 }
 
 function OnTriggerExit( other : Collider ) {
 
    if(other.tag == ("Player")){
    
      able = false;
    
    }
 
 }
 
 
 
 function Update () {
 
   if(able){
   
     if(stat){
     
       if(Input.GetKeyDown("e")){
       
       stat = false;
       animation.Play("closingdoor", PlayMode.StopAll);
       audio.PlayOneShot(clos);
       Debug.LogWarning("im now closed");
       
       }
     
     }
     
      if(!stat){
     
       if(Input.GetKeyDown("e")){
       
       stat = true;
       animation.Play("openingdoor", PlayMode.StopAll);      
       audio.PlayOneShot(open);
       Debug.LogWarning("im now open");
       
       }
     
     }
     
   }
 
 }
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

  • Sort: 
avatar image
0
Best Answer

Answer by robertbu · May 25, 2013 at 06:38 AM

One issue (perhaps 'the' issue) is that you need an 'else' on line 54. Right now if the 'e' key is pressed, you do the 'if (stat)' block which sets 'stat' to 'false' which means that the 'if (!stat) block will also be executed in the same frame.

Comment
Add comment · Show 1 · 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
avatar image Psycho8Vegemite · May 25, 2013 at 06:44 AM 0
Share

oh great, awesome. that fixed it, thanks

Welcome to Unity Answers

The best place to ask and answer questions about development with Unity.

To help users navigate the site we have posted a site navigation guide.

If you are a new user to Unity Answers, check out our FAQ for more information.

Make sure to check out our Knowledge Base for commonly asked Unity questions.

If you are a moderator, see our Moderator Guidelines page.

We are making improvements to UA, see the list of changes.



Follow this Question

Answers Answers and Comments

13 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

Related Questions

Detect input, return true for 3s then return false 1 Answer

How to use 'check if player is on ground' bool in script 2 Answers

Can you fix my code? (Audio for doors) 2 Answers

My animation keeps on repeating on my animator 1 Answer

GameObject reacts to audio source 1 Answer


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