This is probably impossible! But I am making a makeover game, so when you click on the different parts of the face the costume changes. I wanted a sprite (that would act as a cursor) so when I hovered the mouse over, for example the lips a lipstick would appear, and the eyes, a mascara would appear. Does anyone know how to do this? Or at least how to get a cursor style sprite, so I can work the rest out?
Thanks in advance!
Offline
Well, the closest thing you can do to have a sprite as a cursor is to make it always go to the mouse pointer. The cursor will still be visible, but the sprite would sort of act like the cursor. To make a sprite go to a mouse pointer, use this script:
When flag clicked forever go to mouse pointer
and then you could make another script to change the costume of the cursor as you click on different parts of the face
When flag clicked forever if <touching [eyebrows]> and <mouse down> set to costume [cursor1] if <touching [lips]> and <mouse down> set to costume [cursor2]
and so on...
The parts of the face would have to be separate sprites for the above scripts to work. Hope this helps you out!
EDIT: If you want me to post pictures of the scripts, just let me know
Last edited by coka (2010-07-11 13:50:02)
Offline