ex_camera_set_fade_draw_target(cameraHandle, value)
| Argument | Description |
|---|---|
| cameraHandle | The camera handle |
| DrawGUI | Whether the fade effects will draw on the DrawGUI layer instead (globally) or just the assigned view (default) |
This function changes where the fade effects for the particular object will be drawn. You can use this in order to allow a camera object to show a fade effect on the entire screen and not just the view.
//Set the drawing target for the camera's fade effects to its view only ex_camera_set_fade_draw_target(global._camera, false); //Set the drawing target for the camera's fade effects to the entire screen ex_camera_set_fade_draw_target(global._camera, true);