tags:

views:

16

answers:

1

Soya is a 3D game framework for python.

How can I change the cursor image to/from a different image?

A: 

Not sure but,

dir() function is your friend. Use it see what methods and attributes are available for "Cursor" class.

From the look of it, it doesn't have one. How ever the parent class allows you to set a shape.

This class is derived from soya.Volume

It seems to have a function called set_shape.

pyfunc