onCameraFrame 在XR-Frame中怎么执行获取到数据?
const context = wx.createCameraContext()
const listener = context.onCameraFrame((frame) => {
console.log(frame.data instanceof ArrayBuffer, frame.width, frame.height)
})
listener.start()
s上面这段代码为什么在XR-Frame中没有效果,或者说没有执行