-
Notifications
You must be signed in to change notification settings - Fork 2
/
README
37 lines (28 loc) · 812 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Platforming Game in Python
Goals of project:
Use fsa.py for clean input and possible use for ai agents
Nice graphics
Metroidvania concept
Smooth input handling and fast paced gameplay
Chipmunk Physics
GOALS FOR PLAYER CONTROL
metroid / ninja / n
* fast paced actions
* wall jumps and grabs
* ducking rolls
* grabbing ceilings
* ladders
* elevators
* double jumps
* lots of animations
* double tap dives
* prone
* mirror's edge!!!
don't try to be too realistic, make it really fun!
wall jumps:
find if collision is on side of wall
if wall has a high friction
if player is pressing away from the wall
apply horizontal force against wall
( this will effectively press player and stick to wall )
if player jumps, allow for a 45 angle jump away from wall