And I see mouse pointer on web version, you add code to disable windows pointer? Or just like:
public Texture2D cursorTexture, cursorTextureSelect;
public Vector2 hotSpot = Vector2.zero;
void Start()
{
if (cursorTexture != null)
{
Cursor.SetCursor(cursorTexture, hotSpot, CursorMode.Auto);
}
}