Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 Aer93 · Jun 25, 2011 at 11:19 AM · javascriptsounds

Sounds when mouse is over

I want an object to play a sound when the mouse is over it I tried this

 var soundP : AudioClip;
 
 function OnMouseOver ()
 {
      if(AudioSource.clip != soundP)
      {
             AudioSource.clip = soundP;
      }
      if(!audio.isPlaying)
      {
             AudioSource.Play();
      }    

}

But I get this error : An instance of type 'UnityEngine.AudioSource' is required to access non static member 'clip'.

Help pls

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 Ashkan_gc · Jun 25, 2011 at 11:31 AM

you can access AudioSource component of your gameObject using audio property. attach an audioSource to your gameObject and even add a @RequireComponent tag to your script because any object that wants to play sounds should have an audio source attached.

 var soundP : AudioClip;
 function OnMouseOver()
 {
 if(audio.clip != soundp) audio.clip = soundP;
 if (!audio.isPlaying)
 {
 audio.Play();
 }
 }


there is a play function that takes the audio clip to play as an argument, in that way you don't need to set the clip as the clip of the audio source. i think it was PlayOneShot. when you type AudioSource you are writing the name of the class which only allows you to access static variables/functions. you need the reference to the audio source component that you can get by using audio property.

to tell the script to attach an audio source automatically to your gameObject if it don't have any write this attribute in your script.

 @RequireComponent(AudioSource)

in this way when you add this component an audiosource will be added autoamtically if needed.

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 Aer93 · Jun 25, 2011 at 12:53 PM 0
Share

It works if I put manually the AudioSource, but the @RequiereComponent(AudioSource) doenst work. I got this error: There is no 'AudioSource' attached to the "Cube1" game object, but a script is trying to access it. You probably need to add a AudioSource to the game object "Cube1". Or your script needs to check if the component is attached before using it.

Thnx

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Audio Repeating. 1 Answer

How to plan a game for unity? 2 Answers

Setting Scroll View Width GUILayout 1 Answer

Progresive sound ? 1 Answer

Can someone help me fix my Javascript for Flickering Light? 6 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