Skip to content

Releases: AustL/PygameWidgets

Popups

Choose a tag to compare

@AustL AustL released this 25 Sep 10:47
76a661d

Added Popup widget using Tkinter

Pygame Widgets v1.0.0

Choose a tag to compare

@AustL AustL released this 04 Aug 08:10

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

Pre-release

Choose a tag to compare

@AustL AustL released this 29 Jul 08:37

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

Choose a tag to compare

@AustL AustL released this 25 Jul 00:22
359951d

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

Dropdown

Choose a tag to compare

@AustL AustL released this 20 Jun 06:48
v0.5.0

Grammar edits in readme

Progress Bar

Choose a tag to compare

@AustL AustL released this 20 Feb 23:54

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

Toggle

Choose a tag to compare

@AustL AustL released this 14 Feb 08:36
125884e

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

Animations

Choose a tag to compare

@AustL AustL released this 01 Sep 07:09

Added animations