Version: 2017.4
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Camera.GetAllCameras

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
public static method GetAllCameras(cameras: Camera[]): int;
public static int GetAllCameras(Camera[] cameras);

Parameters

camerasAn array to be filled up with cameras currently in the Scene.

Description

Fills an array of Camera with the current cameras in the Scene, without allocating a new array.

The passed in array needs to be of minimum size of allCamerasCount . When the array size is larger than the allCamerasCount value, only the first elements up to allCamerasCount will be filled up. When the array size is smaller than the allCamerasCount value, an argument exception is thrown. When the array argument passed in is null, this call will throw a nullreference exception.

The return value indicates how many cameras are saved in the array.