From dcba19ed732e118d71d0344387f11281ad993d18 Mon Sep 17 00:00:00 2001 From: GBA bot Date: Sat, 1 Jan 2022 22:35:08 +0000 Subject: [PATCH] Write the introduction for the pong game --- book/src/SUMMARY.md | 3 ++- book/src/pong/introduction.md | 14 ++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 book/src/pong/introduction.md diff --git a/book/src/SUMMARY.md b/book/src/SUMMARY.md index c67ea685..2ea8f618 100644 --- a/book/src/SUMMARY.md +++ b/book/src/SUMMARY.md @@ -7,4 +7,5 @@ - [Linux setup](./setup/linux.md) - [Windows setup]() - [Mac OS setup]() - - [Building the game](./setup/building.md) \ No newline at end of file + - [Building the game](./setup/building.md) +- [Learn agb part I - pong](./pong/introduction.md) \ No newline at end of file diff --git a/book/src/pong/introduction.md b/book/src/pong/introduction.md new file mode 100644 index 00000000..f27d5a21 --- /dev/null +++ b/book/src/pong/introduction.md @@ -0,0 +1,14 @@ +# Learn agb part I - pong + +In this section, we'll make a simple pong style game for the Game Boy Advance using `agb`. +You will learn: + +* How to import graphics using `agb`. +* What Game Boy Advance sprites are and how to put them on the screen. +* How to detect button input and react to it. +* How to add a static background. +* How to make a dynamic background for a score display. +* How to add music to your game. +* How to add sound effects to your game. + +With this knowledge, you'll be well equipped to start making your own games! \ No newline at end of file