@react-three/fiber 8.17.6 → 8.17.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -171,7 +171,8 @@ const CanvasImpl = /*#__PURE__*/React__namespace.forwardRef(({
|
|
|
171
171
|
type,
|
|
172
172
|
offsetX: gestureEvent.nativeEvent.locationX,
|
|
173
173
|
offsetY: gestureEvent.nativeEvent.locationY,
|
|
174
|
-
pointerType: 'touch'
|
|
174
|
+
pointerType: 'touch',
|
|
175
|
+
pointerId: gestureEvent.nativeEvent.identifier
|
|
175
176
|
}));
|
|
176
177
|
return true;
|
|
177
178
|
}
|
|
@@ -171,7 +171,8 @@ const CanvasImpl = /*#__PURE__*/React__namespace.forwardRef(({
|
|
|
171
171
|
type,
|
|
172
172
|
offsetX: gestureEvent.nativeEvent.locationX,
|
|
173
173
|
offsetY: gestureEvent.nativeEvent.locationY,
|
|
174
|
-
pointerType: 'touch'
|
|
174
|
+
pointerType: 'touch',
|
|
175
|
+
pointerId: gestureEvent.nativeEvent.identifier
|
|
175
176
|
}));
|
|
176
177
|
return true;
|
|
177
178
|
}
|
|
@@ -146,7 +146,8 @@ const CanvasImpl = /*#__PURE__*/React.forwardRef(({
|
|
|
146
146
|
type,
|
|
147
147
|
offsetX: gestureEvent.nativeEvent.locationX,
|
|
148
148
|
offsetY: gestureEvent.nativeEvent.locationY,
|
|
149
|
-
pointerType: 'touch'
|
|
149
|
+
pointerType: 'touch',
|
|
150
|
+
pointerId: gestureEvent.nativeEvent.identifier
|
|
150
151
|
}));
|
|
151
152
|
return true;
|
|
152
153
|
}
|