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 EdenDolev · Apr 29, 2020 at 10:13 PM · audiofadeoutfadein

fade in fade out audio manager

 this is my audio manager:
 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
 
 public class AudioManager : MonoBehaviour
 {
     public AudioSource BGM;
     public float musicTimer;
     void Start()
     {
         musicTimer = 0f;
         DontDestroyOnLoad(gameObject);
         if(FindObjectsOfType<AudioManager>().Length >1)
         {
             Destroy(gameObject);
         }
 
     }
     // Update is called once per frame
     void Update()
     {
         musicTimer = BGM.time;
     }
     public float getTime()
     {
         return musicTimer;
     }
     public void ChangeBGM(AudioClip music)
     {
         if (BGM.clip.name == music.name)
             return;
                
         BGM.Stop();
         BGM.clip = music;
         BGM.Play();
         ;
     }
     
         
     }
 
 **and i am having trouble of creating fade in fade out.. this is my switch on load code:**

 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
 
 public class SwtichMusicOnLoad : MonoBehaviour
 {
     public AudioClip newTrack;
     private AudioManager theAM;
     private float wait;
     private float now;
     private float waitingtime;
     void Start()
     {
         theAM = FindObjectOfType<AudioManager>();
         wait = theAM.GetComponent<AudioSource>().clip.length;
         now = (theAM.getTime());
         waitingtime = wait - now;
 
 
         if (newTrack != null)
         {
             Debug.Log("changing song");
            theAM.ChangeBGM(newTrack);
        }
              
     }

I used a turiol on youtube, and now i am lost, and tired :( for the dont destroy on load i have a script that deletes the old one.. so.. I dont know how to fade in fade out now.. I want to fade in fade out every time a level ends.. means a new track.. but when i tried various functions it faded every time the level resets and didnt fade on level transition.. kind of lost and need help a guidance. i know i will have many moments like this LOL but i am hoping for some good advice.. thanks in advance for you paitince

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

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.

Follow this Question

Answers Answers and Comments

157 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 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 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 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 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 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 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 avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Fade In / Out not working C# 1 Answer

AudioClip.Create fade in and out 1 Answer

How would you create a transition between different maps or rooms like in Luigi's Mansion? 0 Answers

How to make blinding and flashing effects with lerp? 2 Answers

Sprite smooth fade out/in 2 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