Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How could I use this tracking data I made for the camera?

Asked by
Benbebop 1049 Moderation Voter
3 years ago
Edited 3 years ago

So I've got some tracking data for a shaky camcorder look.

I want to loop it over other animations and tweens, I'm not sure of the best way to do it. Its not the difference between frames, its just the offset from 0, so just adding it wont work alone. Any ideas?

1 answer

Log in to vote
0
Answered by 3 years ago

im not sure if this is what you're going for but, you could put all the positions into a table and then loop through all of the positions and set the camera's position

local positiontable={}
for i,v in pairs(positiontable)do
    workspace.CurrentCamera.CFrame=CFrame.new(v)
end

sorry if i didn't answer your question

0
The problem there is that I want this to add to whatever other animation I have with the camera at the moment. This doesnt allow that. Benbebop 1049 — 3y
0
ok sorry iop2319 0 — 3y
Ad

Answer this question