-
-
Notifications
You must be signed in to change notification settings - Fork 53
Open
Labels
Description
Inside the CameraViewRenderer (getImage and image getter) there is a reference to this.video:
ARnft/src/renderers/CameraViewRenderer.ts
Line 122 in 5a66982
| this.context_process.drawImage(this.video, 0, 0, this.vw, this.vh, this.ox, this.oy, this.w, this.h); |
and:
ARnft/src/renderers/CameraViewRenderer.ts
Line 138 in 5a66982
| this.context_process.drawImage(this.video, 0, 0, this.vw, this.vh, this.ox, this.oy, this.w, this.h); |
but video is not declared or defined in the class, we have only the _video member:
ARnft/src/renderers/CameraViewRenderer.ts
Line 55 in 5a66982
| public _video: HTMLVideoElement; |
We need to check the correctness of this and if this may lead to some bugs.