Skip to content

Commit d29af49

Browse files
Merge pull request #1 from AristurtleDev/2d-tutorial-bounty--index
Added preface
2 parents 370716d + f16f296 commit d29af49

File tree

1 file changed

+76
-0
lines changed
  • articles/tutorials/building_2d_games

1 file changed

+76
-0
lines changed
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
---
2+
title: Building 2D Games with MonoGame
3+
description: A beginner tutorial for building 2D games with MonoGame.
4+
---
5+
6+
This tutorial covers game development concepts using the MonoGame framework as our tool. Throughout each chapter, we will explore game development with MonoGame, introducing new concepts to build upon previous ones as we go. we will create a Snake game, which will serve as the vehicle to apply the concepts learned throughout the tutorial. The goal of this tutorial is to give you a solid foundation in 2D game development with MonoGame and provide you with reusable modules that you can jump start future projects.
7+
8+
## Who This Is For
9+
10+
This documentation is meant to be an introduction to game development and MonoGame. Readers should have a foundational understanding of C# and be comfortable with concepts such as classes and objects.
11+
12+
> [!NOTE]
13+
> If you are just getting started with C# for the first time, I would recommend following the official [Learn C#](https://dotnet.microsoft.com/en-us/learn/csharp) tutorials provided by Microsoft. These are free tutorials that teach you programming concepts as well as the C# languages. Once you feel you have a good foundation with that, come back and continue here.
14+
15+
## How This Documentation Is Organized
16+
17+
This documentation will introduce game development concepts using the MonoGame framework while walking the reader through the development of a Snake clone. The documentation is organized such that each chapter should be read sequentially, with each introducing new concepts and building off of the previous chapters.
18+
19+
> [!CAUTION]
20+
> This is currently a work in progress and is not finished.
21+
22+
| Chapter | Summary | Source Files |
23+
| ------- | ------- | ------------ |
24+
| | | |
25+
26+
In additional to the chapter documentation, supplemental documentation is also provided to give a more in-depth look at different topics with MonoGame. These are provided through the Appendix documentation below:
27+
28+
| Appendix | Summary |
29+
| -------- | ------- |
30+
| | |
31+
32+
## Conventions Used in This Documentation
33+
34+
The following conventions are used in this documentation
35+
36+
### Italics
37+
38+
*Italics* are used for emphasis, technical terms, and paths such as file paths including filenames and extensions.
39+
40+
### Inline Code Blocks
41+
42+
`Inline code` blocks are used for methods, functions, and variable names when they are discussed with the body a text paragraph.
43+
44+
### Code Blocks
45+
46+
```cs
47+
// Example Code Block
48+
public void Foo() { }
49+
```
50+
51+
Code blocks are used to show code examples with syntax highlighting
52+
53+
## MonoGame
54+
55+
If you ever have questions about MonoGame or would like to talk with other developers to share ideas or just hang out with us, you can find us in the various MonoGame communities below
56+
57+
* [Discord](https://discord.gg/monogame)
58+
* [GitHub Discussions Forum](https://github.com/MonoGame/MonoGame/discussions)
59+
* [Community Forums (deprecated)](https://community.monogame.net/)
60+
* [Reddit](https://www.reddit.com/r/monogame/)
61+
* [Facebook](https://www.facebook.com/monogamecommunity)
62+
63+
## Note From Author
64+
65+
> I have been using MonoGame for the past several years (since 2017). It was a time in my game development journey where I was looking for something that I had more control over. I didn't want to spend the time to write a full game engine, but I also wanted to have more control than what the current engines at the time (i.e. Unity) offered. At that time, there was a vast amount of resources available for getting started, but none of them felt like they fit a good beginner series. Even now, the resources available still seem this way. They either require the reader to have a great understanding of game development and programming, or they assume the reader has none and instead focuses on teaching programming more than teaching MonoGame. Even still, some relied too heavily on third party libraries, others were simply very bare bones asking the reader to just copy and paste code without explaining the *what* of it all.
66+
>
67+
> Since then, I have written various small self contained tutorials on different topics for MonoGame to try and give back to the community for those getting started. I also participate regularly in the community discussion channels, answering questions and offering technical advice, so I'm very familiar with the topics and pain points that users get hung up on when first starting out.
68+
>
69+
> With this documentation, I hope to take the lessons I've learned and provide a tutorial series that I wish was available when I first started.. To present using MonoGame in a straight forward way, introducing concepts and building off of them as we go along in a way that makes sense and is easy to follow.
70+
>
71+
> \- Christopher Whitley (Aristurtle)
72+
73+
## Acknowledgements
74+
75+
> [!NOTE]
76+
> Acknowledgments will be added at a later time to recognize everyone that assisted with editing and reviewing this documentation.

0 commit comments

Comments
 (0)