I create 3 cameras for different points of view but now I want to change the field of view for each camera to 120. How can I do that?
Asked
Active
Viewed 446 times
1 Answers
1
You can use the setFov
call for each camera, for example:
camera1.node().getLens().setFov(120)
camera2.node().getLens().setFov(120)
camera3.node().getLens().setFov(120)
If you wish to explicitly specify both the horizontal and vertical field of view, you should use the two-parameter version of setFov
.

rdb
- 1,488
- 1
- 14
- 24
-
Thank for your return! – rina Apr 17 '18 at 07:03
-
Please consider accepting this answer if it answered your question. – rdb Apr 17 '18 at 10:53