VOOZH about

URL: https://www.geeksforgeeks.org/python/pyglet-on-mouse-press-event/

⇱ PYGLET – On Mouse Press Event - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

PYGLET – On Mouse Press Event

Last Updated : 30 Jul, 2021

In this article we will see how we can trigger on mouse press event in PYGLET module in python. Pyglet is easy to use but powerful library for developing visually rich GUI applications like games, multimedia etc. A window is a "heavyweight" object occupying operating system resources. Windows may appear as floating regions or can be set to fill an entire screen (fullscreen).This event get called when the mouse button was pressed (and held down).
We can create a window with the help of command given below 
 

pyglet.window.Window(width, height, title)


Below is the syntax of the on mouse press event, this method get called when this event is triggered : 

@window.event 
def on_mouse_press(x, y, button, modifiers):
 print("Mouse button pressed")


Example: Below is the implementation 

Output : 

Mouse button pressed
Mouse button pressed
Mouse button pressed
Mouse button pressed
Comment
Article Tags: