v@up={0,1,0}; vector targetObj = point("/obj/targets", "P", 0); //vector targetObj2 = {-25,0,25}; @N = normalize(targetObj - @P);
PS. In case when I put in normalize a "targetObj2" the points are facing in the right direction.
v@up={0,1,0}; vector targetObj = point("/obj/targets", "P", 0); //vector targetObj2 = {-25,0,25}; @N = normalize(targetObj - @P);
Mike_A
Try this:
Use an 'Object Merge' SOP. Set 'Object 1' to the path to the target object.
Set 'Transform' to 'Into this object'.
Connect that SOP into the second input of the wrangle with this code:
v@up={0,1,0};
vector targetObj = point(1, "P", 0);
v@N = normalize(targetObj - @P);