A Skilluv starter — Godot 4.3+ / GDScript. Small 2D platformer with player, coins, HUD, and unit tests via GUT.
A minimal but complete Godot 4.3 project structured the way you'd start a real game:
CharacterBody2Dplayer with horizontal move + jump + gravityArea2Dcoins that emit a signal when collectedCanvasLayerHUD listening to that signal via typed connections- One scene assembled from three sub-scenes
- GUT test scaffold for headless unit tests
- Uses
PlaceholderTexture2Dso the game runs without any external assets
- Install Godot 4.3 (Standard or C# — this starter is pure GDScript)
- Open
project.godotin the Godot editor - Press
F5(Run project)
Controls: A / D or arrows to move, Space to jump.
project.godot Godot project config + input map
icon.svg Editor icon
scenes/
main.tscn Root scene (Player + HUD + Coins + Ground)
player.tscn Player scene
coin.tscn Coin scene
ui/hud.tscn HUD (score label)
scripts/
main.gd
player.gd
coin.gd
ui/hud.gd
tests/gut/ GUT unit tests (install GUT via AssetLib)
assets/{sprites,sounds}/ Placeholders — replace with CC0 assets
Starter Godot 4.3 : petit platformer 2D avec joueur, pièces, HUD et scaffold GUT.
Voir docs/fr/getting-started.md.
Ouvrir project.godot dans Godot 4.3, presser F5.
MIT — see LICENSE.