Bug with BABYLON.Scene.ExclusiveDoubleClickMode

Hi,

Thanks for your interest.

I work with Chrome Version 110.0.5481.178 (Build officiel) (64 bits). It is the last one.

On my playground,

with ExclusiveDoubleClick = true

When I click :

I obtain pointerinfo.type = 1 and pointerinfo.type = 2 (PointerDown and PointerUp)

I never obtain the POINTER TAP event (32)

When I double click :

I obtain pointerinfo.type = 1 and pointerinfo.type = 2 (PointerDown and PointerUp) twice then pointerttypeinfo.type = 64 (DBL CLICK EVENT)

with ExclusiveDoubleClick = false

When I click :

I obtain 4 events :
pointerinfo.type = 1, pointerinfo.type = 16, pointerinfo.type = 2 AND finally pointerinfo.type = 32

When I double click :

I obtain 7 events :
pointerinfo.type = 1, pointerinfo.type = 16, pointerinfo.type = 2, pointerinfo.type = 32, pointerinfo.type = 1, pointerinfo.type = 2 and FINALLY pointerinfo.type = 64

And before, i’m sure it did not work like that because i used ExclusiveDoubleClick = true to avoid the click event when i double clicked. Now i never obtain the click event even if I click once.

And my purpose is to avoid the click event when i double click.

I already posted a question a few weeks ago and you told me to proceed like that (Bug on PointerEventTypes?). It worked well until two or three weeks ago.

Hope I’m clear. :wink:

Thanks for your answer.

Boris