Navigation
BlueprintAPI > BlueprintAPI/GeometryScript > BlueprintAPI/GeometryScript/MeshEdits
Attempt to merge together two vertices, and report whether they were merged. Note that some merges may be prevented because they would create non-manifold edges in the mesh, which are not supported.
Target is Geometry Script Library Mesh Basic Edit Functions
Inputs
| Type | Name | Description |
|---|---|---|
| exec | In | |
| object | Target Mesh | Mesh in which to merge vertices |
| integer | Vertex Keep | Vertex to keep after merge |
| integer | Vertex Discard | Vertex to discard after merge |
| struct | Options | Options for merge, controlling which merges should be permitted |
| real | Interp Param | The kept vertex is moved to interpolated position Lerp(VertexKeep Position, VertexDiscard Position, InterpParam) |
| boolean | Defer Change Notifications | Whether to defer change notifications after this operation |
Outputs
| Type | Name | Description |
|---|---|---|
| exec | Out | |
| boolean | Success | Flag indicating whether the merge succeeded |
| object | Target Mesh |