VOOZH about

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

⇱ PYGLET – On Mouse Release Event - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

PYGLET – On Mouse Release Event

Last Updated : 31 Jul, 2021

In this article, we will see how we can trigger on mouse release 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 released unlike mouse press event which get called when mouse button is pressed.

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 release event, this method get called when this event is triggered 

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


Below is the implementation 

Output : 

Mouse button released
Mouse button released
Mouse button released
Mouse button released


 

Comment
Article Tags: