Video#onPlay

onPlay : Phaser.Signal This signal is dispatched when the Video starts to play. It sends 3 parameters: a reference to the Video object, if the video is set to loop or not and the playback rate. Source code: gameobjects/Video.js (Line 86)

Video#onChangeSource

onChangeSource : Phaser.Signal This signal is dispatched if the Video source is changed. It sends 3 parameters: a reference to the Video object and the new width and height of the new video source. Source code: gameobjects/Video.js (Line 91)

Video#onError

onError : Phaser.Signal This signal is dispatched if an error occurs either getting permission to use the webcam (for a Video Stream) or when trying to play back a video file. Source code: gameobjects/Video.js (Line 106)

Video#onComplete

onComplete : Phaser.Signal This signal is dispatched when the Video completes playback, i.e. enters an 'ended' state. On iOS specifically it also fires if the user hits the 'Done' button at any point during playback. Videos set to loop will never dispatch this signal. Source code: gameobjects/Video.js (Line 96)

Video#mute

mute : boolean Gets or sets the muted state of the Video. Source code: gameobjects/Video.js (Line 1217)

Video#onAccess

onAccess : Phaser.Signal This signal is dispatched if the user allows access to their webcam. Source code: gameobjects/Video.js (Line 101)

Video#loop

loop : boolean Gets or sets if the Video is set to loop.Please note that at present some browsers (i.e. Chrome) do not support seamless video looping.If the video isn't yet set this will always return false. Source code: gameobjects/Video.js (Line 1360)

Video#key

key : string The key of the Video in the Cache, if stored there. Will be null if this Video is using the webcam instead. Default Value null Source code: gameobjects/Video.js (Line 52)

Video#height

height : number The height of the video in pixels. Source code: gameobjects/Video.js (Line 64)

Video#isStreaming

isStreaming : boolean Is there a streaming video source? I.e. from a webcam. Source code: gameobjects/Video.js (Line 140)