Godot 4: First Scene
en / gamedev / godot — 2025-12-14 00:00:00
Godot 4: First Scene
- Download Godot 4.x (Standard) for Linux.
- Create a New Project and a new Node2D scene.
- Add a Label with the text:
Hello Godot. - Save the scene as
main.tscn. - Go to Project Settings → Run → Main Scene and set it to
main.tscn. - Click Run ▶️
Optional (attach this script to your Node2D):
```gdscript extends Node2D
func _ready(): print("Scene is ready!")