Hello,
I'm using AnimateOnlyOnHotspots combined with a single frame view to make my cursor glow when the user mouses over a hotspot, character or object. Is there a nice way to make my cursor glow when the user mouses over an inventory item too?
function repeatedly_execute()
{
InventoryItem*item=InventoryItem.GetAtScreenXY(mouse.x, mouse.y);
if (item!=null)
{
//animate cursor here
}
else
{
//restore cursor graphic to normal
}
}