Client actions enabled 'j' & 'l'

This commit is contained in:
Zhiyang He 2017-08-17 11:29:10 -07:00
parent 4592a977a0
commit 1d38c74c5b
1 changed files with 16 additions and 2 deletions

View File

@ -1,2 +1,16 @@
client_actions = ['w', 'a', 's', 'd', 'z', 'x']
client_newloc = ['n']
client_actions = [
'w', # Move forward
'a', # Move left
's', # Move backward
'd', # Move right
'z', # Move downward
'x', # Move upward
'j', # Turn left
'l' # Turn right
]
client_newloc = [
'n' # Bring the view to a new starting location
]