diff --git a/src/core/useVideoTexture.tsx b/src/core/useVideoTexture.tsx index ebbfa4344..3f3a65a7d 100644 --- a/src/core/useVideoTexture.tsx +++ b/src/core/useVideoTexture.tsx @@ -35,6 +35,6 @@ export function useVideoTexture(src: string, props: Partial) }), [src] ) - useEffect(() => void (start && texture.image.play()), [texture]) + useEffect(() => void (start && texture.image.play()), [texture, start]) return texture }