• 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 C10110 · Mar 23, 2014 at 06:50 PM · audiotouchplayon

Play Oneshot Audio On Touch

Hello everyone!

I have a script that plays audio on touch, and in that sense it works just fine. I have been working to make it so that when you click something to play an audio file, you can't que the audio file again while it's playing. But the way the script is now, the audio never plays again at all, ever. Even after the audio is done playing. Although sometimes right after finishing playing it will let me click it again. It's finicky! Take a look if you have a moment:

 public class PlayAudioOnTouch : Touchable
 {
     private int _timer = 0;
     public override void OnStartTouch () 
     {
         if(_timer == 0)
         {
             if( audio != null ) audio.Play();
             base.OnStartTouch();
             _timer = 1;
         }
         else if(_timer > 0 && _timer <= Time.time)
             _timer++;
         else
             _timer = 0;
         
     }
     
     public override void OnEndTouch ()
     {
         base.OnEndTouch();
     }
 }

If I were to put money on the source of the problem. I would say use of "Time.time" is what's cuasing these issues. I think using something else in lue of that would work better, but I don't know what to use. Any input would be more than welcome. Thanks for taking the time to look at my question!

Comment
Add comment · Show 2
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 Simon-Larsen · Mar 24, 2014 at 12:01 AM 0
Share

I'd recommend extending your class with $$anonymous$$onobehavior and fetching the AudioSource component from whichever GameObject you want to play sounds. By doing this you can track a lot of info, also when the AudioSource is playing and when it's not

avatar image C10110 · Mar 24, 2014 at 02:57 PM 0
Share

Thanks for the suggestion! I'll see what I can make happen by doing what you said.

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.

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

21 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

Related Questions

play audio on touch 1 Answer

touch the object to play an audio 1 Answer

How to string multiple audio clips together 1 Answer

Randomly play audio 0 Answers

make audio play on click 1 Answer

  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges