Implement #2: simulate hover event

This commit is contained in:
Yanzhen Yu
2026-04-01 12:00:00 +08:00
parent 4e0c401583
commit 7a57784daf
4 changed files with 22 additions and 3 deletions

View File

@@ -159,6 +159,7 @@ export type mousemoveCallBack = (p: mousePosition[]) => void;
export type mousePosition = {
x: number;
y: number;
id: number;
timeOffset: number;
};