pygame is
pygame.org is
|
PGU - Phil's pyGame Utilities
PGU - Phil's pyGame Utilities - 0.9Peter Rogers (petros)Tags:DescriptionA collection of handy modules and scripts for PyGame.
tools
gui
game libs
ChangesI added INSTALL.txt with some install instructions, as well as instructions
for distributing pgu with your game/application.
**** Minor API Update ****************************************************
Sorry about this, but I realized after releasing 0.8 that the new theme loading
API wasn't very good... (And had some bugs to boot!)
This update will be in comparison to 0.7, since I don't think many people
downloaded 0.8 yet.
For using the default theme, the API remains the same (do nothing special).
For using an custom theme:
It was:
gui.theme.load("gray")
It is:
theme = gui.Theme("gray")
app = gui.App(theme=theme)
Also you can use your own fully custom theme (oooh!)
theme = CustomTheme()
app = gui.App(theme=theme)
**************************************************************************
0.8 notes:
phil: fixed tileedit and leveledit to use new theme loading API
phil: fixed tabbing bug where last item would not get tabbed to
phil: fixed setup.py to install pgu.gui
phil: fixed pgu.gui to import pygame.locals
**** Minor API Update ***************************************************
The API for loading a custom theme has been changed...
It was:
gui.theme.load("gray")
It is:
app = gui.App()
app.theme.load("gray")
Also you can use your own fully custom theme (oooh!)
theme = MyTheme()
app = gui.App(theme=theme)
*************************************************************************
Cthulhu32: found bug in leveledit where file name isn't picked correctly
Links
ScreenshotReleases
Pygame.org account CommentsIf you wish to leave a comment with your pygame.org account, please sign in first.
|
|