project super easy to make in godot engine

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Jp Dev beginner

hello, I need help to create a super easy project to do in the godot engine, like a question and answer game that uses little code and nodes in godot just to learn the concepts of GDScript

using Google translator

:bust_in_silhouette: Reply From: GameSchool

Hi

The most basic thing I can think about is Snake, But maybe looking for exercises for more popular engines like Unreal or Unity will give you some inspiration

:bust_in_silhouette: Reply From: Ertain

Have you looked at the Dodge the Creeps demo game?

:bust_in_silhouette: Reply From: The Glitch

You can try doing pong and other arcade classics.

:bust_in_silhouette: Reply From: stormreaver

The simplest 2D game I can think of is one where blocks drop from the top of the screen, and you have to catch them at the bottom of the screen with a paddle. The main benefits are:

  1. It requires only a few simple node types to implement the core mechanics.
  2. You don’t need to implement a computer player.
  3. It requires only a little bit of code to make the core mechanics work.
  4. It lends itself to expansion (additional controllers types, for example) without having to change the core game.