Hey there!
I’m developing an augmented reality app and now is working perfectly locally but when test on my device my View dissapear
Debug and notice that when I activate my camera View is not showed, if erase the code to activate the camera can see the View
Camera Code:
var camera:Camera = Camera.getCamera();
camera.setMode(640, 480, 30, false);
video = new Video(STREAM_WIDTH, STREAM_HEIGHT);
video.attachCamera(camera);
addChild(video);
View Code:
view3D = new View3D();
view3D.backgroundColor = 0x393939;
addChild(view);
Thanks in advance