You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// src/model/corner.ts// Disabled `this.mergeWithIntersected();`privatemove(newX: number,newY: number){this.x=newX;this.y=newY;// this.mergeWithIntersected(); -- Old behavior: Would merge while still draggingthis.moved_callbacks.fire(this.x,this.y);this.wallStarts.forEach((wall)=>{wall.fireMoved();});this.wallEnds.forEach((wall)=>{wall.fireMoved();});}
Is there any way to prevent merging of wall ? like if you drag the wall on other wall it become one, that has a front and back edge ? Thanks
The text was updated successfully, but these errors were encountered: