For an MVP game, you might want to avoid spending too much time getting bogged down making the perfect image for your sprite; instead, you can always just use some of the provided sprites in the Gallery. This allows you to focus on getting the concept for your game into a functional state, and personalize it later on!
Activity: Arrays Project
Make your own unique games!
[
{
"name": "It follows",
"imageUrl": "https://pxt.azureedge.net/blob/555d1fb46cb7c3da755d4ddf12ab8e9f4af7367f/static/courses/csintro2/arrays/enemy-follow.gif"
}, {
"name": "Hazardous",
"imageUrl": "https://pxt.azureedge.net/blob/56311c48ad73638220353d9495346cbee9181285/static/courses/csintro2/arrays/hazards.gif"
}
]
Concepts Learned
||sprites:Sprites||
and||sprites:Projectiles||
- Controller (dx) and
||controller:move mySprite with buttons||
||functions:Functions||
||logic:Logic||
||scene:Tilemaps||
||arrays:String Arrays||
||arrays:Sprite Arrays||
||arrays:Number Arrays||
||arrays:length of array||
Student Task #1: Initial Ideas
- Think of at least 3 ideas for games that use some of the “concepts learned” listed above
- On a piece of paper, sketch out what each game will look like
- Discuss your ideas with a partner. Talk about:
- What you like about the ideas
- What you don’t like about the ideas
- Any suggestions you have for extending the ideas
- With your partner, discuss what features would be necessary to start each game
Student Task #2: Creating a Minimum Viable Product
A Minimum Viable Product, or MVP, is the simplest version of a product. It will consist of placeholder values, and have features missing.
An MVP is a very simple foundation for your product, which allows you to gather feedback and ideas from others without getting lost in the small parts that require polish later on: making the perfect sprite, creating challenging levels, identifying how players score more points, and so on.
To create your MVP,
- Pick one of your ideas that you want to turn into a full game
- Identify what crucial functionality is required for the game - identify what makes it unique
- Make a list of these key (important) features that you need to implement
- Transition into the development cycle to start making your game
Student Task #3: The Development Cycle
This is the development process we will use to turn an idea for a game into a finished product.
The development cycle works by adding small changes and getting feedback as you develop. When you get to the end of the Learn section, if there are ideas that you would still like to implement, return to the Build section and start implementing those ideas.
Repeat this cycle until you are satisfied with the game, and the game has at least 5 concepts from the list of Concepts Learned. If more time is available, create an MVP for another one of your original ideas and begin the development cycle on it.
For a guided example of this process, see the example project page.
What did we learn?
- What did you learn when making an MVP version of the game? What was useful, and what was difficult?
- Were any items you initially listed as crucial to the game were not used? Why? If all were used, explain which ones were most essential to the game, versus the less essential elements of the game.