Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
2 captures
13 Jun 22 - 14 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 Michael 12 · Mar 10, 2011 at 03:35 AM · dooropenclose

Open & Close a simple door animation with sound and door states

I'm trying to open a simple wooden door when my FPS player walks close to the door using a raycast and a taged door, I=My door opens fine with a nice creaky door sound but I can't seem to get it to close after I'm through the door. I'm trying to use a tmer but I'm sure I'm mucking it up somewhere although I get no script error mesages so I'm at a bit of a loss as to where I'm buggering it up??

Here is my script I'm using:

enum bobsDoorStates {open, closed}; var bobsDoorState : bobsDoorStates; var doorSound : AudioClip; var doorSoundClose : AudioClip; var timer : float = 0.0;

function Awake() { bobsDoorState = bobsDoorStates.closed; }

function Update () { }

function Open() { animation.Play("FBDoorOpen"); bobsDoorState = bobsDoorStates.open; audio.PlayOneShot (doorSound); }

 if(timer >= 3){
     Close();
 }


function Close(){ animation.Play("FBDoorClose"); bobsDoorState = bobsDoorStates.closed; timer = 0; audio.PlayOneShot (doorSoundClose); }

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 Mike 3 · Mar 10, 2011 at 07:26 AM

I'd skip using your own timer and just do something like:

function Open() {
    animation.Play("FBDoorOpen");
    bobsDoorState = bobsDoorStates.open;
    audio.PlayOneShot (doorSound);
    Invoke("Close", 3);
}
Comment
Add comment · Show 4 · 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 Michael 12 · Mar 10, 2011 at 03:51 PM 0
Share

Thanks $$anonymous$$ike, but I have a different sound for the door closing, how would I get that to work with this setup?

avatar image Mike 3 · Mar 10, 2011 at 04:06 PM 0
Share

That's just the Open door function, the rest of the code stays as it was before ($$anonymous$$us the timer). The above just calls Close after 3 seconds

avatar image Michael 12 · Mar 11, 2011 at 01:04 AM 0
Share

Thanks $$anonymous$$ike, I only now just had a chance to change my code and check it out, it works beutifully now. That was all I had to do was pull out the timer stuff and just add that once simple line of code you provided. AWESO$$anonymous$$E!! Thanks again man :)

avatar image Mike 3 · Mar 11, 2011 at 04:09 AM 0
Share

You're welcome :D Also check out InvokeRepeating if you want to do something similar but called repeatedly

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

No one has followed this question yet.

Related Questions

Need help with door opening and closing script/animation 3 Answers

Door Opening And Closing 2 Answers

how to make a door opening and closing. 1 Answer

Why is my door opening and closing at the same time????????? 2 Answers

open/close a animated door 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