WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Releases: AustL/PygameWidgets

Popups

25 Sep 10:47
76a661d

Choose a tag to compare

Added Popup widget using Tkinter

Pygame Widgets v1.0.0

04 Aug 08:10

Choose a tag to compare

Pygame Widgets v1.0.0

This is the official new release of Pygame Widgets!

Installation

To install the new version, run the following command in a terminal window.
pip install pygame-widgets==1.0.0

Usage

After creating your widgets the usual way, you no longer need to call their listen and draw methods every loop. Instead, simply add:

pygame_widgets.update(events)

at the end of the main loop and this will handle all of that. Simply call the disable or hide method if you don't want the widget to listen or draw:

widget.disable() or widget.hide()

Note: Documentation is now available on readthedocs.io.

Pygame Widgets v1.0.0-beta

29 Jul 08:37

Choose a tag to compare

Pre-release

Pygame Widgets v1.0.0-beta

This pre-release implements a new system for handling mouse input and widgets.

Installation

To install this pre-release use the terminal command:

pip install pygame_widgets==1.0.0b0

Usage

After creating your widgets the usual way, you no longer need to call their listen and draw methods every loop. Instead, simply add:

pygame_widgets.update(events)

at the end of the main loop and this will handle all of that. Simply call the disable or hide method if you don't want the widget to listen or draw:

widget.disable() or widget.hide()

Note: Documentation will be made available as soon as possible.

Combo Box

25 Jul 00:22
359951d

Choose a tag to compare

Created the combo box widget, which allows a searchable dropdown menu.

Dropdown

20 Jun 06:48

Choose a tag to compare

v0.5.0

Grammar edits in readme

Progress Bar

20 Feb 23:54

Choose a tag to compare

Create a progress bar widget that can double up as a health bar.

Toggle

14 Feb 08:36
125884e

Choose a tag to compare

Added the Toggle widget which allows you to switch between two values.

Animations

01 Sep 07:09

Choose a tag to compare

Added animations