Appearance
Use Video component
html
<Video src="myvideo.mp4" play={true} />
## Props
src
: stringpaused
: booleanloop
: booleanmuted
: booleanloader
: {onComplete
: (texture: Texture) => void;onProgress
: (progress: number) => void; }
## Events
play
: () => void;pause
: () => void;ended
: () => void;progress
: (progress: number) => void;