Notifications
Clear all

[Closed] Link object to vertex

How do I get an attachment control to work in a mesh vertex? In other words, what should I do to link an spline object say, to a specific vertex on a mesh so that it follows it?

2 Replies

do you want to wire a vertex normal as well? if so the only a script controller i see as a solution

You mean something like (in pseudo code):
local ctrlf = splineobject.pos.controller[1];
ctrlf.addtarget $mesh.vertices[x] vertex;

yes I guess I need normal as well.
I was trying to use ‘position_constraint’ hoping this would be faster than script but it only accepts nodes, not vertices as targets.
or is wire parameter faster?