Beta Which Way Is Up


Just gave this a go; it is a nice puzzler. It would perhaps be nicer if it hid the mouse while playing, and while I appreciate your changing the Z key for jump to the B button, it would probably be more user friendly if the Z key graphic it uses to progress text was replaced by a B button icon. But for a beta, it certainly runs well enough - thanks for the port!
 
Hi all !

@levi: thanks for your kind words, it's really appreciated :)

And your suggestions are already on my TODO list :p

Regarding the mouse cursor, I found this on pygame.org:
pygame.mouse.set_visible()

hide or show the mouse cursor

set_visible(bool) -> bool

If the bool argument is true, the mouse cursor will be visible. This will return the previous visible state of the cursor.

I'll give this a try ASAP !

Cheers, Magic Sam
 
Hi all !

@alxm : thanks for your comment on the repo, that's really appreciated :)

I tried the piece of code I found a year ago (see previous post), and it seems to do the job !

In lib/main.py:
Code:
#Initializing pygame and screen
pygame.init()
screen = pygame.display.set_mode((SCREEN_WIDTH,SCREEN_HEIGHT))
#Turning mouse cursor off
pygame.mouse.set_visible(False)

I'll update the package ASAP !

Cheers, Magic Sam
 
Hi all !

@alxm : thanks for your comment on the repo, that's really appreciated :)

I tried the piece of code I found a year ago (see previous post), and it seems to do the job !

In lib/main.py:
Code:
#Initializing pygame and screen
pygame.init()
screen = pygame.display.set_mode((SCREEN_WIDTH,SCREEN_HEIGHT))
#Turning mouse cursor off
pygame.mouse.set_visible(False)

I'll update the package ASAP !

Cheers, Magic Sam
Thanks for fixing it! I have 225 PNDs on my SD card, I've been trying to leave Repo comments or at least ratings for the stuff I try out and like :)
 
Hi all !

I think the last item on the TODO list is to replace the Z key graphic with something ressembling the Pandora's B button ;) I'll take care of this ASAP !

Cheers, Magic Sam
 
Back
Top