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 NutsFly01 · May 21, 2017 at 03:02 AM · c#unity 5audioaudiosourceaudioclip

Audio/c#/unity Can i control the duration by time ?

Hello,

I need to control the duration of AudioClip by time. The sound must loop as long as the function does not stop it an example:

 void playWhile(float time){
 if(time >= 0){
 gameobject.getcompenant<audiosource>().play();
 }else{
 gameobject.getcompenant<audiosource>().stop(); // Stops it immediately, Do not wait until the end of the sound
 
 }
 
 }// The sound must loop as long as the function does not stop it

Thank, and sorry for my english (i m french)

Comment
Add comment · Show 1
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 toddisarockstar · May 21, 2017 at 03:28 AM 0
Share

the function as you have it writen is going to complete in one frame. are you simply looking to set a timer for how long to play a sound?

1 Reply

· Add your reply
  • Sort: 
avatar image
2
Best Answer

Answer by jdean300 · May 21, 2017 at 03:44 AM

It seems like you want to stop an audio clip after a certain amount of time. You could do something like this:

 public void PlayForTime(float time)
 {
     GetComponent<AudioSource>().Play();
     Invoke("StopAudio", time)
 }
 
 private void StopAudio()
 {
     GetComponent<AudioSource>().Stop();
 }

Now if you call PlayForTime(5f) the audio will play for 5 seconds and then be stopped.

Comment
Add comment · 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

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

8 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

[Rhytm game] How to spawn on exact time of music? 3 Answers

How to play "audiosource" component in a prefab from script? 0 Answers

Triggering multiple audio clips to play in sequence 1 Answer

How can I play audio clips depending on the players movement 0 Answers

Problem with audio 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