Thank you so much for your reply. by the way, I want to tell you something I am searching last few days about complete shopping system. I did not find any video which whows first to last. can you please make videos on this. please@@RehopeGames
Thank you so much again 😊 In fact, these designs are quickly designed visuals for the video. I want to make a better design. I couldn't care because I was going through a very busy period. I will have time in 2 weeks. Thanks for your interest 🙏🙏🙏
hi Thank you very mouch for this nice tutorial . my restume button doesnt work (UnassignedReferenceException: The variable puseMenue of PuseMenue has not been assigned. You probably need to assign the puseMenue variable of the PuseMenue script in the inspector.) can you help me please ?
Hi again, I managed to make it work, but when I pause the game the music does not pause and continues playing, there is a way to solve it? (I only use the audio source)
Hi 🙂 Yes, you have a solution. You can use 2 audio source ( for SFX and Music ). When you pause the game access music audio source component and use pause function ( _musicAudioSource.Pause() ), and when you resume the game use Play function. Or you you can use Mute function.
I made my Pause Menu show up by pressing ESC. Here is the code I used: - using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.SceneManagement; public class PauseMenuScript : MonoBehaviour { bool gamePaused = false; [SerializeField] GameObject pauseMenu; void Update() { if (Input.GetKeyDown(KeyCode.Escape) && gamePaused == false) { Time.timeScale = 0; gamePaused = true; pauseMenu.SetActive(true); } else if ((Input.GetKeyDown(KeyCode.Escape) && gamePaused == true)) { Time.timeScale = 1; gamePaused = false; pauseMenu.SetActive(false); } } public void Home() { SceneManager.LoadScene(0); } public void Continue() { Time.timeScale = 1; gamePaused = false; pauseMenu.SetActive(false); } } -
Hello sir I have one question Please give me reply Question:- when I press pause button, then all sound aslo stop working . because my game is zombie Survival and when zombie collide to player then get the sound. when zombie collide to player then sound play but that's time I pressing pause button but sound also play pls give me reply ❤ for sound also stop... subscriber ..❤
Hi, i have a problem with the pause menu script. When i write the code to freeze the game(Time.timescale = 0) my game is not freezing. What should i do?
I know that it is outtt of the topic what I'm talking about, but I'm having trouble building APK in Unity, can u explain that in a video on ur channel and be in a hurryyyy, plssssss sirrrr 😭🙏🏻
Türkçe kaynaklar benim için yeterli ve globale iş yapmıcam diyorsan şart değil bence. Ama alanında gerçekten iyi yerlere gelmek istiyorsan şart bence. Türkiye'de bir şirkette işe girecek olsan bile yabancı dil seni rakiplerinden öne çıkarır. Sonuç olarak yavaş yavaş öğren derim dostum 😊
In the first level, the pause button work, but in the other it doesn't work, because the buttons of the pause menu (except of the pause button) doesn't click.
Videonuz inanılmaz faydalı en kısa sürede kendi oyunuma entegre edeceğim. Daha çok öğretici video bekliyorum. Çok teşekkürler :)
Really wish u added just hitting the escape key to pull up the menu
You can do it easily 😊
hey, did u manage to do it? i need it too
Is there a way to use the esc button instead of aa pause button?
I did it like this:
-
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class PauseMenuScript : MonoBehaviour
{
bool gamePaused = false;
[SerializeField] GameObject pauseMenu;
void Update()
{
if (Input.GetKeyDown(KeyCode.Escape) && gamePaused == false)
{
Time.timeScale = 0;
gamePaused = true;
pauseMenu.SetActive(true);
}
else if ((Input.GetKeyDown(KeyCode.Escape) && gamePaused == true))
{
Time.timeScale = 1;
gamePaused = false;
pauseMenu.SetActive(false);
}
}
public void Home()
{
SceneManager.LoadScene(0);
}
public void Continue()
{
Time.timeScale = 1;
gamePaused = false;
pauseMenu.SetActive(false);
}
}
-
thank you so much Sir, perfect tutorial
these videos are really great and helped me a lot, keep it up
Glad you like the videos 😊
Thanks for your feedback 🙏
Yay another video
😊
you always make the best video. thank you so much.
Glad you like them! Thanks for the feedback 😊
Thank you so much for your reply. by the way, I want to tell you something I am searching last few days about complete shopping system. I did not find any video which whows first to last. can you please make videos on this. please@@RehopeGames
Thank you very much, you have taught me a lot, keep it up
Glad to hear that 😊🙏
Thank you sir. this tutorial was so helpful for me
Thank you for the very informative and instructive video. Perfect
I'm glad hear that, thanks bro 😊🙏
Can you please make a tutorial on how to create terrain in RPG maker game? It's really difficult.
Hello, maybe next time...
Thanks for your interest 🙏
I like your videos so much thank you for that :) and sorry if I ask again but do you know exakly when the designs are coming out ? :)
Thank you so much again 😊
In fact, these designs are quickly designed visuals for the video.
I want to make a better design.
I couldn't care because I was going through a very busy period.
I will have time in 2 weeks.
Thanks for your interest 🙏🙏🙏
Thank you good work
Thanks 😊
Thank You from Indonesia
kodlarında ne işe yaradığını açıklayarak yeni bir video gelir mi elinize sağlık gerçekten yaralı videolar ama tek anlamadığım kodların işlevleri 😍😍
Merhaba kardeşim, güzel yorumun için çok teşekkür ederim 🙏
Sonraki videolarda daha açıklayıcı olmaya çalışırım 😊
@@RehopeGames 🥰🥰sizi gerçekten ilk videonuzda beğendim ve sevdim ,umarım yakında daha da büyürsünüz .ne kadar teşekkür etsek azdır ellerinize sağlık
@@ysfgaming861 Güzel dileklerin için çok teşekkürler, bi parça faydamız oldu ise ne mutlu bize . Projenizde Başarılar dilerim 😊
thank you !!!
thanks for this helpful stuff
Glad it was helpful! Thank you for feedback 😊
hi Thank you very mouch for this nice tutorial . my restume button doesnt work (UnassignedReferenceException: The variable puseMenue of PuseMenue has not been assigned.
You probably need to assign the puseMenue variable of the PuseMenue script in the inspector.) can you help me please ?
Hi, Thanks 😊
Did you create all function as me?
And did add the function to the buttons as a click event ?
thank you
Hi again, I managed to make it work, but when I pause the game the music does not pause and continues playing, there is a way to solve it? (I only use the audio source)
Hi 🙂
Yes, you have a solution. You can use 2 audio source ( for SFX and Music ). When you pause the game access music audio source component and use pause function ( _musicAudioSource.Pause() ), and when you resume the game use Play function.
Or you you can use Mute function.
Like and like!!!👍🏻👍🏻👍🏻
Thanks bro 😊
Why i cannot drag the button images into the source image, can anybody explain
I made my Pause Menu show up by pressing ESC. Here is the code I used:
-
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class PauseMenuScript : MonoBehaviour
{
bool gamePaused = false;
[SerializeField] GameObject pauseMenu;
void Update()
{
if (Input.GetKeyDown(KeyCode.Escape) && gamePaused == false)
{
Time.timeScale = 0;
gamePaused = true;
pauseMenu.SetActive(true);
}
else if ((Input.GetKeyDown(KeyCode.Escape) && gamePaused == true))
{
Time.timeScale = 1;
gamePaused = false;
pauseMenu.SetActive(false);
}
}
public void Home()
{
SceneManager.LoadScene(0);
}
public void Continue()
{
Time.timeScale = 1;
gamePaused = false;
pauseMenu.SetActive(false);
}
}
-
Hey watsup man I have a problem when i click on the home button and the click on the play button my character glitches and goes under the floor
Hello sir I have one question
Please give me reply
Question:- when I press pause button, then all sound aslo stop working .
because my game is zombie Survival and when zombie collide to player then get the sound. when zombie collide to player then sound play but that's time I pressing pause button but sound also play pls give me reply ❤ for sound also stop... subscriber ..❤
Hi, i have a problem with the pause menu script. When i write the code to freeze the game(Time.timescale = 0) my game is not freezing. What should i do?
Why when i create 2 canvas the second canvas is not appearing
Hello! Is it applicable to game with videos?
I have followed the steps correctly, but in the pause menu section of the inspector only the script appears
and there is an error in the "sceneManagement" section
Can you detail the error?
The pause button was working until I added the TimeScale function. What could I be doing wrong?
Hello sorry for the late reply.
Did you solve your problem ?
merhabalar sınavım var acil yetiştirmem lazım menü assetlerinin hepsini alabilir miyim acaba?
I know that it is outtt of the topic what I'm talking about, but I'm having trouble building APK in Unity, can u explain that in a video on ur channel and be in a hurryyyy, plssssss sirrrr 😭🙏🏻
If you still haven't found it, search for it somewhere else, you'll propably find it.
@mohameddaoudi3814
I found a solution a while ago, thanks for not ignoring my comment 🤍
Sir make game over screen in unity 2d , tha nks
I've noted your request bro , thanks for your interest 😊
Sir , make video intigrate ad of admob .
@@harryking4700 👍
Imagine making this in Roblox Studio
kendimi yazılımda geliştirmem için ingilizce öğrenmem şart mı
Türkçe kaynaklar benim için yeterli ve globale iş yapmıcam diyorsan şart değil bence.
Ama alanında gerçekten iyi yerlere gelmek istiyorsan şart bence.
Türkiye'de bir şirkette işe girecek olsan bile yabancı dil seni rakiplerinden öne çıkarır.
Sonuç olarak yavaş yavaş öğren derim dostum 😊
selamlar bu background png sini paylaşma ihtimaliniz var mı ? şuan proje üzerinde çalışıyorumda çok güzel olur paylaşabilirseniz
Merhaba kardeşim, eve geçince paylaşayım akşam 👍
@@RehopeGames abi bu akşama projemi teslim etmem lazımda en kısa zamanda atabilirsen memnun olurum. teşekkür ederim
drive.google.com/file/d/1gcgarBP0xiVgsPxT5ytxc9rEpx3gZsw3/view?usp=sharing
@@RehopeGames teşekkür ederim
In the first level, the pause button work, but in the other it doesn't work, because the buttons of the pause menu (except of the pause button) doesn't click.
Did you create a prefab from the Pause panel and add it other scenes?
make enemy ai and player melee combat
I plan this for Action game ( so next time)
plz give me the project file
Hello,
I will share all project soon...
Thanks for your interest .
Very basic stuff for noobs, really not real programming at all. But good for newbs
Hello , Yes that's true. I'm gonna publish tutorial from beginner to advanced.
Maybe next videos will be suitable for you 😊