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
1
Question by MadToLove · Sep 19, 2012 at 07:19 AM · physicsdoorunlockdragrigidbody

When dragging a Door open using RIGIDBODYSCRIPT Plays sound.

Using the DragRigidBody script from the Dynamic Shadows Demo. Doors open/close perfectly fine. Curious how i could make it so when the player clicks and drags to open a door it plays a sound?

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

Answer by Dark_Moo · Oct 02, 2012 at 10:44 PM

Hello, you can have an event happen when the player clicks on the door with

Javascript:

 function OnMouseDown () {
     //Audio Code Here
 }

C#:

 void OnMouseDown() {
     //Audio Code Here
 }

Hope this helps.

Comment
Add comment · Show 2 · 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 MadToLove · Oct 03, 2012 at 08:12 AM 0
Share

Yeah but that just plays audio when clicking down on the mouse. I'm trying to get it so when I'm activley dragging the door open via the rigidbodyscript it plays a sound. I stop dragging the sound stops. I click and start dragging open the door it starts playing sound again.

avatar image Dark_Moo · Oct 03, 2012 at 05:37 PM 0
Share

kk, what if you set the door to sleep by default, and On$$anonymous$$ouseDown you wake it up and if the door is awake you can use:

 if (!rigidbody.IsSleeping())
 {
     //Play Sound
 }

and you can use On$$anonymous$$ouseUp to make the door sleep again

so it would look something like: C# code:

 void On$$anonymous$$ouseDown()
 {
     rigidbody.WakeUp();
 }
 
 void On$$anonymous$$ouseUp()
 {
     rigidbody.Sleep();
 }
 
 void Update()
 {
     if (!rigidbody.IsSleeping())
     {
         //Play Sound
     }
 }

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

11 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

Related Questions

The name 'Joystick' does not denote a valid type ('not found') 2 Answers

how to create Magnetic repulsion ? 0 Answers

Faux Gravity Prolem? #2 2 Answers

Hooking RigidBody.AddForce 0 Answers

Finding the axis of a curving pipe 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