ex_camera_is_visible(cameraHandle)
| Argument | Description |
|---|---|
| cameraHandle | The camera handle |
This function returns whether the camera is currently visible or not.
//Check if the camera is currently not visible and make it visible if not
if (!ex_camera_is_visible(global._camera)) {
ex_camera_set_visible(global._camera, true);
}