View Single Post
  #1  
Old 01-23-2009, 05:22 AM
rav rav is offline
Member
 
Join Date: Jan 2009
Posts: 4
Joystick update rate?

Hi!

I found this in the vizjoy.py file:
Quote:
#Update joystick events with same priority as input tasks
viz.EventClass.callback(self,viz.UPDATE_EVENT,self .__update,priority=viz.PRIORITY_INPUT)
Does that mean the state is only updated every frame?
Is it possible to get this to be updated every ms or every tick?

We need precise reaction time measurement like in the "tutorial_reactionTime.py" example but with custom joystick buttons.
I tried "yield viztask.waitEvent(vizjoy.BUTTONDOWN_EVENT, data)" but the data object does not seem to be updated. So I don't know how to get the time, the event occured.
Reply With Quote