We've got object rendering and positioning working.
[krufty_fps.git] / demo / pack_out / scripts / cam.py
blob495b90bf60e36856762dc554ec5dae484e68525c
1 #!/usr/bin/python
3 def key_down(me, params):
4 print "the params are", params
6 def mouse_stuff(me, params):
7 print "the params to the mouse are", params
9 self.functions['MOUSEMOTION'] = mouse_stuff
10 self.functions['KEYDOWN'] = key_down