mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2026-01-05 10:09:47 +03:00
528 B
528 B
Pong with GDScript
A simple Pong game. This demo shows best practices for game development in Godot, including signals.
Language: GDScript
Renderer: GLES 2
How does it work?
The walls, paddle, and ball are all
Area2D
nodes. When the ball touches the walls or the paddles,
they emit signals and modify the ball.
