Hugo Locurcio 2a962929f3 Update demo files for Godot 4.2.1 (#1013) | há 9 meses atrás | |
---|---|---|
.. | ||
Logic | há 2 anos atrás | |
screenshots | há 3 anos atrás | |
Pong with C#.csproj | há 2 anos atrás | |
Pong with C#.sln | há 4 anos atrás | |
README.md | há 3 anos atrás | |
ball.png | há 4 anos atrás | |
ball.png.import | há 9 meses atrás | |
icon.webp | há 1 ano atrás | |
icon.webp.import | há 1 ano atrás | |
paddle.png | há 4 anos atrás | |
paddle.png.import | há 9 meses atrás | |
pong.tscn | há 2 anos atrás | |
project.godot | há 9 meses atrás | |
separator.png | há 4 anos atrás | |
separator.png.import | há 9 meses atrás |
A simple Pong game. This demo shows best practices for game development in Godot, including signals.
Language: C#
Renderer: GLES 2
Note: There is a GDScript version available here.
Note: There is a VisualScript version available here.
Note: There is a GDNative C++ version available here.
Check out this demo on the asset library: https://godotengine.org/asset-library/asset/535
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.