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 7c9fd0f698 - Show all commits

View File

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