-
Sounds good. I've got 60 changes to the last release of Pyui that I'll suggest and if you guys like migrate to Pyui2. I haven't changed anything fundamental so it should go smoothly.
I also have enhanced Frame and Button widgets, but they may be too specific to my game. Then again, perhaps it would be nice to have more features.
Once this is underway, it'd probably be a good idea to...
2005-05-05 05:36:01 UTC in pyui
-
I'm using it for a game, which I intend to sell. The project seems to be defunct, so I'm maintaining my own extensions and bug fixes.
It'd be great to see someone restart Pyui. I could contribute changes, but don't have the time/energy to manage the project myself right now.
I've also been looking a bit at PyOgre as a replacement for pygame/pyui. If you're just starting out you might...
2005-05-01 23:17:57 UTC in pyui
-
I've experienced similar things as well, although I'm using the openglPygame renderer. For example, in 1.0 the theme to use is hardcoded, and you have to fix pyui.init() to get it to work. :-/
So far I've stacked up about 30 revisions to support my use of pyui. Not so many, but enough that I need to get my feet wet and understand exactly what's going on underneath. If only something more...
2004-05-07 16:06:18 UTC in pyui
-
Logged In: YES
user_id=977635
This is due to an extraneous # in TabbedPanel._pyuiMouseDown():
x = event.pos[0] #- self.rect[0]
Should be:
x = event.pos[0] - self.rect[0].
2004-02-18 13:20:33 UTC in pyui
-
I've started to use pyui in earnest for my game, which I intend to publish. I've been very reluctant due to the alpha status of pyui, and that it appears stagnant with a very small user base...
Still, the alternatives didn't do quite what I needed, and so I'm stuck either rolling my own, or extending pyui. I've setup a local subversion repository for fixes/extensions, but would prefer...
2004-02-17 13:42:46 UTC in pyui
-
Mouse Events are incomplete. For example middle mouse clicks and mouse wheels aren't handled at all, and MouseMotion doesn't pass along all it's args.
What's the process for submiting such patchs?.
2004-02-17 13:31:20 UTC in pyui