-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTODO.txt
22 lines (18 loc) · 940 Bytes
/
TODO.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Goals:
1. Turn over as much control of the game as possible to the LEVEL EDITOR.
The more varied the number of unique levels that can be generated
without touching code, the better off we are.
2. Keep the project designed such that it SCALES WELL.
Ideally the amount of work required to add a new feature to the
game will be constant with respect to the total number of features
in the game (asymptotically, that is. In the mean time while we're
still ironing the basics out, things will be worked and reworked
until they're good.)
Things to do:
DONE - Move gravity into the level.
DONE - Add "use" functionality
DONE - Make jump be based on whether you're on top of the ground.
DONE - Move a lot of the functionality from Hero and Met to Actor.
- Make a generic "Enemy" class which Met extends
- Make separate "use"s for something you're in front of and something you're facing
- Add in animation support for entities