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