This project is generated with CoPilot + ChatGPT-4.1. I made this by testing the Agent in VSCode and was just prompting - "vibe coding" 🤔. The assets for this game are also generated via AI - using Microsoft Copilot and then lightly edited with Paint.NET.
I've recoded a YouTube video documenting this: AI-Powered Vibe Coding: Snake Game in VSCode Agent Mode!
PS: I'm not claming to be good at making videos nor that this project is anything impressive or useful. It was just a few hours of fun after work, which I decided to document.
~violin
PS PS: The rest of this file is also generated by the AI Agent. 🫠
This is a Go project using the Ebiten library for 2D game development.
-
Make sure you have Go installed: https://golang.org/dl/
-
Ebiten is already included as a dependency.
-
To run the project:
go run main.go
main.go
: Entry point and basic Ebiten game loop.
- Add your game logic to the
Update
method inmain.go
. - Draw graphics in the
Draw
method. - Adjust the window size in the
Layout
method.
For more, see the Ebiten documentation.