Hey! I added a second camera to my scene but I can’t change the background as I do with the main one. Am I missing something? Thanks!
this.camera = this.cameras.main;
this.camera.setSize(240,270);
this.camera.setBackgroundColor('rgba(21, 7, 4, 1)');
this.camera.setRenderToTexture(customPipeline);
this.camera1 = this.cameras.add(240, 0, 240, 270);
this.camera1.setBackgroundColor('rgba(21, 7, 4, 1)');
this.camera1.setRenderToTexture(customPipeline);