Need help with rabbyt

So I'm using pyglet and rabbyt to handle game graphics. I realized that rabbyt sorts sprite depth on screen in the order I load them: now my problem is, if I want to move some sprites from behind a group of others to over them, is there any way different than re-load them all in a different order? I was looking around in google but cannot seem to find anything about this, can someone help me please?

(log in to comment)

Comments

found it: rabbyt.render_unsorted(sorted list of sprites)

not very intuitive, but good anyway.