Aaron Franke 7d64830cfe Ensure most demos have descriptions and screenshots | před 3 roky | |
---|---|---|
.. | ||
Logic | před 4 roky | |
screenshots | před 3 roky | |
Pong with C#.csproj | před 3 roky | |
Pong with C#.sln | před 4 roky | |
README.md | před 3 roky | |
ball.png | před 4 roky | |
ball.png.import | před 3 roky | |
icon.png | před 4 roky | |
icon.png.import | před 4 roky | |
paddle.png | před 4 roky | |
paddle.png.import | před 3 roky | |
pong.tscn | před 3 roky | |
project.godot | před 3 roky | |
separator.png | před 4 roky | |
separator.png.import | před 4 roky |
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.