Mobile touch pointers, again

I know, that its possible, to pass a callback on pointerdown, but can I just get a simple state of this pointer?
Rather than creating a new callback, I want to add an extra condition in update loop to make it like this:
if (this.cursors.right.isDown || this.input.pointer2.isDown). Though this solution might be right, I am missing something, cause pointer links to the whole touchscreen and even more: pointer2 is down, when I touch the screen by 2 fingers at the same time(I expected pointer 2 link to the image I created and set interactive, but its apparently not). Any help appreciated!

this.input.activePointer

Thanks @samme! That’s still not quite clear for me, but I will realise it somehow