Files

33 lines
1.4 KiB
Markdown
Raw Permalink Normal View History

2016-08-13 17:48:13 -07:00
This is the general getting started guide for all FullScreenShenanigans projects. The guide will show you how to download and run any FullScreenShenanigans game as well as teach you about how to use the console to interact with the game.
2016-03-05 20:31:17 -05:00
### Development
2016-03-05 20:31:17 -05:00
First set up your system using the steps in [Development](https://github.com/FullScreenShenanigans/Documentation/blob/master/Development.md).
2016-03-05 20:31:17 -05:00
## Using the Console
2016-03-05 20:31:17 -05:00
2017-01-27 01:32:40 -08:00
You can use your browser's developer tools to interact with the game.
FullScreenShenanigans projects store their game instances globally with an acronym for the project title.
2016-03-05 20:31:17 -05:00
```javascript
2017-01-27 01:32:40 -08:00
FSP.gamesRunner.pause();
setTimeout(() => FSP.gamesRunner.play(), 1000);
2016-03-05 20:31:17 -05:00
```
2017-01-27 01:32:40 -08:00
In this case, `FSP` is the acronym for FullScreenPokemon.
## Tutorials
2017-01-27 01:32:40 -08:00
There's no definitive guide through the documentation yet.
For now, read through guides in this order:
1. [Components and Modules](https://github.com/FullScreenShenanigans/Documentation/blob/master/Components%20and%20Modules.md)
2. [Things](https://github.com/FullScreenShenanigans/Documentation/blob/master/Things.md)
3. [Inputs](https://github.com/FullScreenShenanigans/Documentation/blob/master/Inputs.md)
4. [Runtime](https://github.com/FullScreenShenanigans/Documentation/blob/master/Runtime.md)
5. [Events](https://github.com/FullScreenShenanigans/Documentation/blob/master/Events.md)
7. Any remaining guides in any order.