ex_camera_is_zooming(cameraHandle)
| Argument | Description |
|---|---|
| cameraHandle | The camera handle |
This function returns whether the camera is currently performing a zoom effect.
//Check if the camera is currently zooming and if not go to next room
if (!ex_camera_is_zooming(global._camera)) {
room_goto_next();
}