ex_camera_is_visible

Returns whether the camera is currently visible

Syntax

ex_camera_is_visible(cameraHandle)
Argument Description
cameraHandle The camera handle
Returns true if the camera is visible, false otherwise

Description

This function returns whether the camera is currently visible or not.

Example

//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);
}

Minimum Supported Version

exCamera 1.0.0