|
| 15 Jul 2011 11:10 AM |
| How to rotate a camera 180 degrees? Without having to move the player around. |
|
|
| Report Abuse |
|
|
| |
|
agent767
|
  |
| Joined: 03 Nov 2008 |
| Total Posts: 4181 |
|
|
| 15 Jul 2011 11:51 AM |
| Use the Focus property of the camera and with some simple math you can make it. |
|
|
| Report Abuse |
|
|
Camoy
|
  |
| Joined: 21 May 2009 |
| Total Posts: 6207 |
|
|
| 15 Jul 2011 11:53 AM |
When you have the camera, try this:
camera.CoordinateFrame = camera.CoordinateFrame * CFrame.Angles(math.rad(180), 0, 0) |
|
|
| Report Abuse |
|
|
|
| 15 Jul 2011 11:54 AM |
I'd rotate on Y axis?
camera.CoordinateFrame = camera.CoordinateFrame * CFrame.Angles(0,math.rad(180),, 0) |
|
|
| Report Abuse |
|
|
| |
|