Тёмный

Uncover the Simple Trick to KEEP MUSIC PLAYING Between Scenes! 

Rehope Games
Подписаться 10 тыс.
Просмотров 25 тыс.
50% 1

Опубликовано:

 

30 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 36   
@Garfield_Minecraft
@Garfield_Minecraft 6 месяцев назад
ok just remember to carry the speaker everywhere you go
@ChapCanai
@ChapCanai Год назад
I dont regret accidentally listening to the game music at 2x speed
@RehopeGames
@RehopeGames Год назад
😂
@programmingwithryan
@programmingwithryan Год назад
Hello Sir can you share this project i want to test this game very much. And I want to use this for my project.Tks
@pedrokkj7304
@pedrokkj7304 Год назад
Hey, I love your tutorials on music and SFX. How would I change music when entering a new scene? Create an audio script for each scene?
@RehopeGames
@RehopeGames Год назад
Hi, You can do this a few different ways. I think the simplest way; - You can create single Audio Manager ( carry it to all scenes with DontDestroyOnLoad method). - And You can access the Audio Manager from new Scene (from any Start function) and change the audio clip. Thanks for your feedback 🙏
@Satenc0
@Satenc0 7 месяцев назад
@@RehopeGames Would be good if you can elaborate a little bit more on this, how could I select a different audio file from a method of AudioSource? Also how to get the current scene name or index and based on that select the AudioSource to play
@x_arnie
@x_arnie 11 месяцев назад
Very nice! But i have a problem of the music playing multiple times if i go between main menu and guide menu of my game.
@RehopeGames
@RehopeGames 11 месяцев назад
Hi, You should take a look at Singleton Pattern 👍 Thanks 🙏
@bigDtvworld
@bigDtvworld 6 дней назад
What about music continue after pause screen?
@l1ax175
@l1ax175 Год назад
THANKS !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
@RehopeGames
@RehopeGames Год назад
🙏🙏🙏😀
@CaosCreativeStudio
@CaosCreativeStudio Год назад
I’m working on a project and I followed your tutorial. Everything works perfectly but the thing is I made a start screen that plays a certain music and when I transition to another scene that same music is still playing. I have assigned a new music to where my player is and I cannot hear that music because the music from the start screen is still playing, I also cannot hear my player jump or collect the coins. How would I fix
@RehopeGames
@RehopeGames Год назад
I think this video can give an idea on this topic. ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-N8whM1GjH4w.html Thank you 😊
@boshhy
@boshhy Год назад
Thank you.
@pandlyn
@pandlyn Год назад
how to change the melody in certain scenes?
@RehopeGames
@RehopeGames Год назад
Hi, maybe this video can give an idea for that ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-N8whM1GjH4w.html
@pandlyn
@pandlyn Год назад
@@RehopeGames i will try, thanks)
@aboodabusaif648
@aboodabusaif648 8 месяцев назад
bro my SFXSource give me null reference exception IDK why :(
@Narwing
@Narwing Год назад
I love you
@RehopeGames
@RehopeGames Год назад
Thanks 😊
@AidanRickards-v4t
@AidanRickards-v4t 6 месяцев назад
Having an issue where the sound effects aren't playing if I open an older screen (like my main menu), the music works fine, but nothing is able to register the audiomanager or the script.
@komradwide4660
@komradwide4660 Год назад
But how would you make it so that specific scenes wont have the audio play?
@RehopeGames
@RehopeGames Год назад
If you remove the Audio Listener component from the Main Camera in the scene where you don't want the sound to play, you won't hear any sound in that scene. This is the simplest method. But if it were me, I would write a small algorithm instead. 😎
@Stigma536
@Stigma536 Год назад
@@RehopeGames How do I make it so that in the Start/Title screen one audio plays, then in the options menu a different one plays, then in the main game a different one plays?
@dertobbe1176
@dertobbe1176 Год назад
Huh, neat
@yonezu5058
@yonezu5058 5 месяцев назад
Can it use with a multiplayer game?
@Broockle
@Broockle 11 месяцев назад
"public static AudioManager instance;" this line is giving me trouble. I never used 'static' before. How did you make yours work?
@RehopeGames
@RehopeGames 11 месяцев назад
You should learn Singleton pattern 👌
@burgi2980
@burgi2980 11 месяцев назад
I just want the music to run if the same scene restarts and not if I for example go back to the menu scene. any help?
@RehopeGames
@RehopeGames 10 месяцев назад
Hello , I understand your request. This code will give an idea for you. using UnityEngine; using UnityEngine.SceneManagement; public class MusicPlayer : MonoBehaviour { private static MusicPlayer instance = null; public AudioClip menuMusic; // Audio clip for menu music public AudioClip gameMusic; // Audio clip for game music private AudioSource audioSource; public static MusicPlayer Instance { get { return instance; } } void Awake() { if (instance != null && instance != this) { Destroy(this.gameObject); return; } else { instance = this; } DontDestroyOnLoad(this.gameObject); audioSource = GetComponent(); SceneManager.sceneLoaded += OnSceneLoaded; // Subscribe to scene loaded event } void OnSceneLoaded(Scene scene, LoadSceneMode mode) { // Change the music when returning to the menu scene if (scene.name == "MenuScene") { audioSource.clip = menuMusic; audioSource.Play(); } // Continue playing game music when switching to the game scene // only if it's not already playing the game music (e.g., after a restart within the game scene) else if (scene.name == "GameScene" && audioSource.clip != gameMusic) { audioSource.clip = gameMusic; audioSource.Play(); } } void OnDestroy() { SceneManager.sceneLoaded -= OnSceneLoaded; // Unsubscribe from the event to prevent memory leaks } }
@FaKz92
@FaKz92 7 месяцев назад
your tutorials are good, but if the watcher did not saw the previous ones he's fucked up, and you never are reffering to the previous videos. This is a big minus in all your videos.
@kursatkilitci7770
@kursatkilitci7770 Год назад
Thx bro
@RehopeGames
@RehopeGames Год назад
biz teşekkür ederiz 😊
Далее
I Made A Difficult Game About Climbing
15:04
Просмотров 2,1 млн
DAXSHAT!!! Avaz Oxun sahnada yeg'lab yubordi
10:46
Просмотров 469 тыс.
How to Start Making Games with No Experience
10:55
Просмотров 69 тыс.
How to Send Variables Between Scenes in Unity
7:34
Просмотров 54 тыс.
How I Made a 3D Platformer in 2D Game Engine
21:23
Просмотров 501 тыс.
Why you Draw Bad Assets || 2D Game Art
13:00
Просмотров 59 тыс.
I Made a 1D Game 🎮
11:18
Просмотров 1,7 млн
I redesigned my game
23:32
Просмотров 67 тыс.
How I designed Fruit Ninja
22:58
Просмотров 6 млн