Home | Trees | Index | Help |
---|
Package pygame :: Module sprite :: Class Group |
|
object
--+ |AbstractGroup
--+ | Group
EventGroup
,
RenderUpdates
The basic Group class you will want to use. It supports all of the above operations and methods.
The RenderPlain and RenderClear groups are aliases to Group for compatibility.Method Summary | |
---|---|
__init__(self,
*sprites)
| |
Inherited from AbstractGroup | |
| |
| |
len(group) number of sprites in group | |
| |
| |
add(sprite, list, or group, ...) add sprite to group | |
| |
clear(surface, bgd) erase the previous position of all sprites | |
copy() copy a group with all the same sprites | |
draw(surface) draw all sprites onto the surface | |
empty() remove all sprites | |
has(sprite or group, ...) ask if group has a sprite or sprites | |
| |
remove(sprite, list, or group, ...) remove sprite from group | |
| |
sprites() get a list of sprites in the group | |
update(*args) call update for all member sprites | |
Inherited from object | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
x.__hash__() <==> hash(x) | |
helper for pickle | |
helper for pickle | |
x.__setattr__('name', value) <==> x.name = value | |
x.__str__() <==> str(x) | |
Inherited from type | |
T.__new__(S, ...) -> a new object with type S, a subtype of T |
Class Variable Summary | |
---|---|
Inherited from AbstractGroup | |
bool |
_spritegroup = True
|
Home | Trees | Index | Help |
---|
Generated by Epydoc 2.0 on Sat Dec 9 14:11:18 2006 | http://epydoc.sf.net |