handleMultiplePointers property

bool handleMultiplePointers
getter/setter pair

If set to true the node will receive multiple pointers, otherwise it will only receive events the first pointer.

This property is only meaningful if userInteractionEnabled is set to true. Default value is false.

class MyCustomNode extends Node {
  handleMultiplePointers = true;
}

Implementation

bool handleMultiplePointers = false;