Skip to content

Commit 20ee84c

Browse files
committed
Updated readme
1 parent f9965ee commit 20ee84c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Game programming patterns in Unity
22

3-
A collection of programming patterns in Unity, mainly from the book [Game Programming Patterns](http://gameprogrammingpatterns.com). These are very useful to better organize your Unity project as the game grows. You don't have to use them - you should see them as tools in your toolbox. Some patterns, such as Update, Game Loop, Component, are already been built-in into Unity so you are already using them!
3+
A collection of programming (design) patterns in Unity, mainly from the book [Game Programming Patterns](http://gameprogrammingpatterns.com). These are very useful to better organize your Unity project as it grows because they capture best practices and solutions to commonly occuring problems. You don't have to use them - you should see them as tools in your toolbox. Some patterns, such as Update, Game Loop, Component, are already been built-in into Unity so you are already using them!
44

55
Programming patterns can be divided into the following groups:
66
1. **Architectural patterns.** One example is the MVC (Model-View-Controller).
@@ -36,6 +36,8 @@ Other patterns:
3636
22. [Facade](#22-facade)
3737
23. [Template](#23-template)
3838

39+
Note that these are not all patterns out there. I recently read a book called "Machine Learning Design Patterns" which includes even more design patterns with a focus on machine learning problems. But I will continue adding patterns as I find them and if they are related to game development.
40+
3941

4042
# Patterns from the book Game Programming Patterns
4143

0 commit comments

Comments
 (0)