Const
The Camera Flash Start Event.
This event is dispatched by a Camera instance when the Flash Effect starts.
Listen for it via either of the following:
this.cameras.main.on('cameraflashstart', () => {}); Copy
this.cameras.main.on('cameraflashstart', () => {});
or use the constant, to avoid having to remember the correct event string:
this.cameras.main.on(Phaser.Cameras.Scene2D.Events.FLASH_START, () => {}); Copy
this.cameras.main.on(Phaser.Cameras.Scene2D.Events.FLASH_START, () => {});
The Camera Flash Start Event.
This event is dispatched by a Camera instance when the Flash Effect starts.
Listen for it via either of the following:
or use the constant, to avoid having to remember the correct event string: