Animated Main Menu - Godot 4 3D Tutorial for Beginners
HTML-код
- Опубликовано: 10 фев 2025
- In this Godot 4.2.2 user interface tutorial I walk you through how add a main menu to our Minecraft in Godot project. I explain how to add buttons and other UI, introduce you to signals, and walk you through how to make a main menu animation.
Previous video: • Learn Godot by Making ...
Project files: / animated-main-102869299
Discord: / discord
Itch: legiongames.it...
Twitter: / legiongames1
Instagram: / legiongames1
I don't know if you are sensitive to people mentioning it, but I really like the gliding in your articulation. Keep up the great tutorials
great video. love the series. my water wasn't jittery but that's ok I still learned something 😂
I really appreciate this tutorial and your other tutorials.
I would like to say that I found making separate menu and main menu scripts ends up being somewhat redundant as all processes could be handled within a single script. I say this because I ran into an issue where when I tried to create an options menu for the main menu and attached the "menu.gd" script to both scenes. When I next opened my project Godot told me the main menu and options menu scenes were corrupted and could not be opened. Neither file was corrupted but a dependency related to the "menu.gd" was definitely the cause, because editing the ".tscn" files to remove the script extensions and then deleting "menu.gd" and copying its text into "main_menu.gd" fixed everything.
cool and good tutorial
waiting patiently for the save game, block choosing
iam also waiting to learn how i can save these complex coordinates.
Plz make tutorial on Enemy ai Boss 3D
Question: Wouldn't it be easier to rotate the scene itself for the "rotating camera around" effect instead of rotating the camera in a circular trajectory?
Not really, mostly for performance reasons. It's easier to move a camera than 350-ish CSGBBoxes.
NOICE
Interesting, it feels like I'm missing something. I went through your "complete crash course" -- and then I learn you're going to continue it, and then I notice you have a more fleshed out "world" -- I guess we were supposed to make a more robust level? Even though the gridmap is kind of cool, I feel it's a bit tedious to build levels this way.
Please make tutorials for place other blocks like dirt, rock.
all you have to do is change the block index to somthing else, for isntance if wood is the 4th (the index starts at 0) on the list of blocks in your gridmap just use the number 4, or even implement a system to change the number
he made it
How can I have the anchor preset making the object centered? It stays in the top left corner 😰
Sorry, how to make the choice of different blocks when you build?
what about the load button?? i would really appreciate it if you tell us how to make a loading system.
Make more tutorials, please!!!
On it. :D
I have a suggestion:
Quest/dialogue implementation OR assets.
Do you stop a game when conversation starts like in elder scrolls or left it running like in neverwinter nights?
How to save quest/dialogue progress between scenes/saves?
Make tutorial how to generate terrain like in Minecraft, or though flat
This please! Procedural generation and chunk rendering in Godot 4 for a Minecraft-like world seems really complicated
I'm currently waiting for a bar for picking and choosing blocks to place.
Wait no mo :)
i tried more than 20 tutorials but my buttons are not clickable please someone help im tired trying everything
👍
How to make 3d camera rotation on mobile device?
same way just different controls (im assuming you mean the Godot mobile version, not the Godot pc version exported to Mobile).
I have noticed that the preload const in menu corrupts the scene or even the world scene. It might also be that I tried makin a bind to go back to the menu when pressing escape and that mightve also corrupted the scene im not sure what of these two caused this but i would like to fnd a fix if anyone has one.
Idk if you still need help but my best advice is to not do what you are doing look for an alternative way of doing what you are trying to do. change_scene_to_packed() removes the current scene from the Scene Tree and deletes it. Since the main menu scene is now deleted from the scene tree you were essentially asking your game take you somewhere that no longer exists, which it cannot do.
@@helter1234 ohh ok ty
Link for download Project