diff --git a/src/bit-systems/video-texture.ts b/src/bit-systems/video-texture.ts index d5d93b5d60..0aea9707c0 100644 --- a/src/bit-systems/video-texture.ts +++ b/src/bit-systems/video-texture.ts @@ -148,6 +148,7 @@ export function videoTextureSystem(world: HubsWorld) { } camera.layers.enable(Layers.CAMERA_LAYER_THIRD_PERSON_ONLY); + camera.layers.enable(Layers.CAMERA_LAYER_FX_MASK); const resolution = VideoTextureSource.resolution[eid]; camera.aspect = resolution[0] / resolution[1]; diff --git a/src/components/video-texture-target.js b/src/components/video-texture-target.js index 331c57f012..aa7c5e5652 100644 --- a/src/components/video-texture-target.js +++ b/src/components/video-texture-target.js @@ -26,6 +26,7 @@ AFRAME.registerComponent("video-texture-source", { } this.camera.layers.enable(Layers.CAMERA_LAYER_THIRD_PERSON_ONLY); + this.camera.layers.enable(Layers.CAMERA_LAYER_FX_MASK); this.camera.aspect = this.data.resolution[0] / this.data.resolution[1];