|
| 12 Dec 2014 10:29 PM |
I'm not that good with the camera
but I tried everything and I can't get the camera to perfectly circle around something |
|
|
| Report Abuse |
|
|
|
| 12 Dec 2014 10:30 PM |
there's a specific tutorial on that on the camera manipulation article from the Wiki i know for a fact
|
|
|
| Report Abuse |
|
|
|
| 12 Dec 2014 10:31 PM |
| that tutorial actually doesn't work. It just makes the camera spin in circles. I'm trying to make it move in a circle |
|
|
| Report Abuse |
|
|
cntkillme
|
  |
| Joined: 07 Apr 2008 |
| Total Posts: 44956 |
|
|
| 12 Dec 2014 10:32 PM |
local radius = 30; local pi = math.pi; local originPosition = blah; local camera = workspace.CurrentCamera;
for angle = pi/180, 2*pi, pi/180 do camera.CoordianteFrame = CFrame.new(originPosition) * CFrame.Angles(0, angle, 0) * CFrame.new(0, 0, radius); wait(0); end |
|
|
| Report Abuse |
|
|
| |
|
| |
|