How to access the default camera from a component?

584 Views Asked by At

A component I'm making needs the default camera, but this.el.sceneEl.camera returns undefined.

Simplified example:

AFRAME.registerComponent('test', {
  init: function () {
    console.log(this.el.sceneEl.camera)
  }
});

How can I retrieve the camera?

1

There are 1 best solutions below

1
On BEST ANSWER

Might have to wait for the camera to be set? Need to document this, but there's an event:

this.el.sceneEl.addEventListener('camera-set-active', function (evt) {
  console.log(evt.detail.cameraEl); 
});