Lily,
Rabbyt itself doesn't have support for different blend modes, but if
you change the OpenGL blend mode it will affect rabbyt sprites. For
example, to draw your sprites with additive blending:
from OpenGL import glBlendFunc, GL_ONE
...
glBlendFunc(GL_ONE, GL_ONE)
some_sprite.render()
MWM
> --
> You received this message because you are subscribed to the Google Groups "Rabbyt" group.
> To post to this group, send email to
rab...@googlegroups.com.
> To unsubscribe from this group, send email to
rabbyt+un...@googlegroups.com.
> For more options, visit this group at
http://groups.google.com/group/rabbyt?hl=en.
>