Godot 4: First Scene

en / gamedev / godot — 2025-12-14 00:00:00

Godot 4: First Scene

  1. Download Godot 4.x (Standard) for Linux.
  2. Create a New Project and a new Node2D scene.
  3. Add a Label with the text: Hello Godot.
  4. Save the scene as main.tscn.
  5. Go to Project Settings → Run → Main Scene and set it to main.tscn.
  6. Click Run ▶️

Optional (attach this script to your Node2D):

```gdscript extends Node2D

func _ready(): print("Scene is ready!")