Super Easy Pause Menu In Godot 4

  Рет қаралды 8,873

rayuse rp

rayuse rp

Күн бұрын

Пікірлер: 33
@vynncenttryllian9959
@vynncenttryllian9959 Жыл бұрын
There are so menu pause tutorials and this is the only one that worked, it wasn't reliant on having watched 8 videos before it and have my game setup exactly like yours. THANK YOU!! can't wait for more tutorials
@excelucate
@excelucate 10 ай бұрын
Been looking across the many pause vids and this IMO is the best. Good clean explanation, easy to follow. Linking pause back to your game (some don't always do this). AND the close-up views of the keyboard activity and coding are what makes this a standout. And it worked first time for me. Keep up the great work!
@Show_Pro
@Show_Pro 6 ай бұрын
Great lessons. There are videos where you do something and nothing works. You make everything simpler and clearer, I am very grateful! Keep up the good work!
@claytonslack6386
@claytonslack6386 4 ай бұрын
Thank you, this has been very helpful and works like a charm. Very well spoken, and easy to follow at real time.
@DouweHummeling
@DouweHummeling 5 ай бұрын
Keep up the good work. This helped me so much! Thank you!
@ItsCarbon_
@ItsCarbon_ 4 ай бұрын
Only this tutorial worked for. Saved a lot of time for me. Thank you so much.
@shadowrunkarma1684
@shadowrunkarma1684 14 күн бұрын
Confirmed. This works for Godot 4+. Thank you @rayuse for this video and explaining what's going on while you're working on the script. Thank you for explaining something not dependent on Godot 3's setget, which is not directly available in Godot 4+. Rayuse, you have saved me a lot of time with this. To save others some possible grief. Pay close attention to your mouse filters in the inspector in Godot 4+; I was only able to get the mouse to interact with my buttons (all signaled correctly in the script) and my score box toolips, both of which used VBox nodes, after I made the bottom child "Pause menu" box an "ignore" on the mouse filter settings.
@pinkayycreates
@pinkayycreates 5 ай бұрын
Only tutorial out of the few I tried that actually worked! Thank you!
@HakanBacon
@HakanBacon 9 ай бұрын
This was so easy to follow and understand. Thanks for making this. You earned a new sub!
@aptak7518
@aptak7518 6 ай бұрын
I had to go through 7 other tutorials before this one. Thank you
@we1n1ng
@we1n1ng 4 ай бұрын
Same
@we1n1ng
@we1n1ng 4 ай бұрын
Just like another user stated. I had to go through a few that weren't working for my project. Thank you so much
@nahuelpaillapi
@nahuelpaillapi Жыл бұрын
thank you for the tutorial, very good base for making a more complexx one, thank you!!!!
@untitledgamestudios
@untitledgamestudios 2 ай бұрын
I HAD BEEN STUCK FOR 2 WEEKS ON MY PAUSE MENU THANK UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU
@orochimaru_villain2793
@orochimaru_villain2793 Жыл бұрын
Thanks bro very Good It's working well
@thebaronofwhispers
@thebaronofwhispers 19 күн бұрын
In case anyone was wondering how to show mouse in pause menu and then capture back into game I used this in: func set_paused(value:bool) ->void: _is_paused = value get_tree().paused = _is_paused visible = _is_paused Input.mouse_mode = Input.MOUSE_MODE_VISIBLE if _is_paused else Input.MOUSE_MODE_CAPTURED
@miinima
@miinima 8 ай бұрын
any suggestions as to why my paused menu, even if invisible, makes every other mouse action impossible? the paused menu sits on top of all the other nodes for visibility, but this also makes everything else unclickable (when it's under all the other nodes, I can click the elements all right). I have a main menu loaded on a "scene holder", with the paused menu on top set as invisible. However, I can't click anything on the main menu while the paused menu is on top.
@FragZoneX
@FragZoneX 2 ай бұрын
can you share this project pls (in the description)
@jeffrey6902
@jeffrey6902 11 ай бұрын
Thanks for the Tutorial, u made it simple and easy to understand When it starts with a paused game, you can add to fix it by hiding the visibility(under inspector) or add this code func _ready(): visible = false
@soirema
@soirema 9 ай бұрын
hey, very cool ! tysm !
@Shawn-cq7qy
@Shawn-cq7qy Жыл бұрын
The only problem every time reload in the pause menu is there please help
@NUCLEAR71124
@NUCLEAR71124 7 ай бұрын
It doesnt work on my project even if i did everything like yours huh?
@eyadsafi86
@eyadsafi86 7 ай бұрын
Thank you, very helpfull
@deadshot8887
@deadshot8887 Жыл бұрын
I have a question. In a multiplayer, is it possible to get audio input from one player's mic and then play it from AudioStreamPlayer3D for all the other players? In other words, I wanna implement proximity chat in my game
@rayuserp
@rayuserp Жыл бұрын
It should be possible though I haven't tried it myself.
@pingu4396
@pingu4396 10 ай бұрын
Legend thank you
@NathaliaFreitas-tl7oh
@NathaliaFreitas-tl7oh 11 ай бұрын
so nice tutorial I did it on godot 4.2.1, the pause menu works, but always when I open my game level it starts with a scene paused, how can I hide it?
@NathaliaFreitas-tl7oh
@NathaliaFreitas-tl7oh 11 ай бұрын
I discovered it reading the comments! thanks a lot @rayuserp! to fix the problem you need to go on pause menu inspector> visibility> check box > click on it! WOWWWW!!!
@soirema
@soirema 9 ай бұрын
bruh I have done 3 tutorial with pausing this is the only thing that works! def a sub works with 2D too for any other wanderer !
@Goodcommunity228
@Goodcommunity228 Жыл бұрын
THANKS YOU SOOOO MUCH
@LILcAprisun4
@LILcAprisun4 Жыл бұрын
how do I set to hidden @rayuse rp
@rayuserp
@rayuserp Жыл бұрын
if you want to hide something with code you can set the visible property to false so visible = false in the case of this tut I am using a setter to essentially toggle between true and false when the pause action is pressed. I achieve this by doing the following _is_paused = !_is_paused so here we basically assign _is_paused to its opposite so if its currently false it will be set to true if its currently true it will be set to false and vise versa and I assign this vaule to the visible property so visible = _is_paused
@MissingOrchid
@MissingOrchid Жыл бұрын
hey can someone help me make my godot game multiplayer? i can pay some money for some assistance haha- im a beginner
How to Make a Pause Game Menu & Pause the Game ~ Godot 4 Tutorial
23:06
Chris' Tutorials
Рет қаралды 34 М.
1% vs 100% #beatbox #tiktok
01:10
BeatboxJCOP
Рет қаралды 67 МЛН
Cat mode and a glass of water #family #humor #fun
00:22
Kotiki_Z
Рет қаралды 42 МЛН
Easy 3d Menu in Godot 4
18:24
rayuse rp
Рет қаралды 14 М.
Simple Level Select Screen in Godot 4
21:58
rayuse rp
Рет қаралды 10 М.
I Made My First Game in Godot in 3 Weeks...
26:21
Jack Sather
Рет қаралды 502 М.
How to Add Interaction in Godot 4
16:48
Nagi
Рет қаралды 32 М.
Mirrors, Every Way You Can Make Them In A Video Game
8:14
Code It All
Рет қаралды 69 М.
Godot 4: Switching Levels Made Easy
15:59
PlugWorld
Рет қаралды 30 М.
Godot... But Prettier
11:23
Gamefromscratch
Рет қаралды 103 М.