dev #338

Merged
ysCha merged 4 commits from dev into prd-deploy 2025-09-11 09:57:01 +09:00
Showing only changes of commit b651aab959 - Show all commits

View File

@ -213,7 +213,7 @@ export function useEvent() {
const modulePoints = []
const modules = canvas.getObjects().filter((obj) => obj.name === POLYGON_TYPE.MODULE)
modules.forEach((module) => {
module.points.forEach((point) => {
module.getCurrentPoints().forEach((point) => {
modulePoints.push({ x: point.x, y: point.y })
})
})