Skip to main content
Participant
July 6, 2020
Question

What is the best way to get the anchor point to the center of a line in Video Copilot for Saber?

  • July 6, 2020
  • 1 reply
  • 418 views

I'm trying to make this saber spin from the center while constantly having the anchor point between the two points (Core Start and Core End)

I prefer having to run an expression to do this but if there's another way please let me know!

Thanks in advanced!

 

PS: I'm using this with this current expression:

x1 = effect("Saber")("Core Start")[0]
x2 = effect("Saber")("Core Start")[1]

y1 = effect("Saber")("Core End")[0]
y2 = effect("Saber")("Core End")[1]

transform.anchorPoint([x1/y1], [x2/y2])

With error: "undefined value used in expression (could be an out of range array subscript )"

 

This topic has been closed for replies.

1 reply

Mylenium
Legend
July 7, 2020

There is no need to address the property stream name. Those are read-only. Simply writing [x1/y1,x2/y2] would be enough.

 

Mylenium

Participant
July 7, 2020

So what do I need to edit in my expression?