Sprite tooltip

OK. I have solution:
this.input.on(‘gameobjectover’, function (pointer, gameObject) {
console.log(“hover”);
tooltip.setPosition(gameObject.x, gameObject.y)
tooltip.visible = true;
});