On 11 October 2012 14:34, Wallace Davidson <[email protected]> wrote:
> Is it possible to have both of these in a program? I have:
>
> @window.event
> def on_key_press(symbol, modifiers):
>     if symbol == key.ESCAPE:
>     return pyglet.event.EVENT_HANDLED
>
> def update(dt):
>     if keys[key.W]:
>         print "hi"
>         code....
>
> But only the on_key_press function is recognised. Would it be better to have
> one or the other?

You don't show it - did you push the keys handler (which I assume is a
KeyStateHandler) onto the window event handlers?


    Richard

-- 
You received this message because you are subscribed to the Google Groups 
"pyglet-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/pyglet-users?hl=en.

Reply via email to