Hi,
I’m really confused. None of Godot’s tutorials are compatible with the Godot.
For example on this page:
In Part 3 of our Getting Started with Godot Tutorial Series, we are showing you how to make a title screen for your new game.
Est. reading time: 2 minutes
It says to create a texture node, but there isn’t any texture in the node window:
You can see it here:
what is the problem? which one should I select?
regards,
Calinou
December 30, 2023, 8:51pm
2
Your Godot version appears to be very outdated. You’re using 3.1.2, but the latest version as of writing is 3.5.3 . Grab the latest 3.x version from Download Godot 3 - Godot Engine
Also, the video is likely referring to the creation of a TextureRect node. There is no “Texture” node to speak of in Godot.
1 Like
HKLabs
December 30, 2023, 8:53pm
3
Did you follow the tutorial that you linked?
There is no Texture node. The tutorial is talking about creating a TextureRect node and assigning a texture to it (located in the inspector).
But even there isn’t ant textureRect node!
HKLabs
December 30, 2023, 8:58pm
5
There is. I just downloaded Godot 3.1.2 (same as your version) and if I search for TextureRect I can see it.
Yes, you are right.
What is the meaning of node in Godot?
In other engines, there isn’t such a word!
HKLabs
December 30, 2023, 9:09pm
7
The documentation is your friend. When in doubt always search there first.
In Overview of Godot's key concepts, we saw that a Godot game is a tree of scenes and that each scene is a tree of nodes. In this lesson, we explain a bit more about them. You will also create your...
Thanks, it sounds like nodes are our game members.