jasondee1
|
  |
| Joined: 26 Jul 2008 |
| Total Posts: 8002 |
|
|
| 03 Aug 2013 05:21 PM |
I just need to know how to get the camera position and the focus position when your in studio mode (not test mode)
I saw it somewhere and it said to put in a command in the command line and you will get the studios camera position but I forgot it.....
thanks! |
|
|
| Report Abuse |
|
|
|
| 03 Aug 2013 05:24 PM |
"CoordinateFrame
CoordinateFrame is the CFrame position of the camera. If you have trouble remembering that it's CFrame not Vector3, remember that CFrame means CoordinateFrame. Example
cam.CoordinateFrame=CFrame.new(10,10,10)
This will make the camera go to 10,10,10
" Quoted from roblox's wiki http://wiki.roblox.com/index.php/Camera_manipulation |
|
|
| Report Abuse |
|
|
|
| 03 Aug 2013 05:25 PM |
I think in studio you can just use: print(Workspace.Camera.CoordinateFrame) print(Workspace.Camera.Focus)
Anywhere else though you would need to use a local script and use print(Workspace.CurrentCamera.CoordinateFrame) print(Workspace.CurrentCamera.Focus)
|
|
|
| Report Abuse |
|
|