Hi,
I'm developing a first person adventure game and I want change the graphic mouse cursor on an hotspot hover event.
How can I do it?
I tried with this code but nothing happens:
Code: ags
Many thanks.
I'm developing a first person adventure game and I want change the graphic mouse cursor on an hotspot hover event.
How can I do it?
I tried with this code but nothing happens:
// room script file
function hDoorBedroomHall_MouseMove()
{
Mouse.ChangeModeGraphic(eModeLeft, 12); //12 is the ID cursor
}
function hDoorBedroomHall_AnyClick()
{
cChecco.ChangeRoom(3);
}
Many thanks.