say i have a transform that is [0,100,0] and i want to add that with the absolute numbers of a transform which are [0,-200,0]
which would result in [0,300,0]
i can't just put
abs obj.position
Forum topic · General Scripting
By JokerMartini · 2010-12-08
say i have a transform that is [0,100,0] and i want to add that with the absolute numbers of a transform which are [0,-200,0]
which would result in [0,300,0]
i can't just put
abs obj.position
Swordslayer · 2010-12-08
What's unacceptable about [abs obj.position.x,abs obj.position.y,abs obj.position.x]? If you want to do it in a loop instead just dissect the for loop I used in the Distance Align thread.