小説の地図を作ろうとしています。しかし、ホットスポットが他の建物を呼び出しているという問題に遭遇しました。質問があります。ポリゴンの形でホットスポットを作成することは可能ですか? これが私のコードとマップです:
screen map:
imagemap:
ground 'images/maps/morning/morning_ground.png'
idle 'images/maps/morning/morning_idle.png'
hover 'images/maps/morning/morning_hover.png'
hotspot (690, 70, 200, 185) action Return("university")
hotspot (528, 100, 120, 90) action Return("my house")
label charapter1:
scene black with dissolve
"Oh, finally I woke up, I had such a terrible dream"
'Must hurry, otherwise I will be late, we must look at the map'
window hide None
call screen map
window show None
if _return == 'university':
'Damn, I'm still late'
return
if _return == 'my house':
'Why did I come home?'
return