Okay, so this is my code. I simplified the co-ordinates for the hover as much as possible, and nothing.
Code: Select all
$ result = renpy.imagemap("gui/ground.png", "gui/hover.png", [
(0, 760, 200, 200, "d1"),
(200, 760, 200, 200, "d2"),
(0, 560, 200, 200, "d3"),
(200, 560, 200, 200, "d4")
], focus="imagemap" )
if result == "d1":
"d1"
elif result == "d2":
"d2"
elif result == "d3":
"d3"
else:
"d4"
Ground http://i.imgur.com/e0SKBRm.png
Hover http://i.imgur.com/LONy5Yx.png
If anybody can put me out of my misery at what silly thing I'm missing here, I'd be eternally grateful. Thank you.
Edit: to be clear the script is firing, the ground image appears, and then I cannot highlight/select anything to advance.