Platform-Group
Platform-Group
**Edit**: Skip to [the bulletpoints on my latest comment](https://github.com/AR-js-org/AR.js/issues/556#issuecomment-1647657725) where I summarise the problem, if you don't want to look over my debugging comments. > @Platform-Group not sure what this...
Okay, confirmed that this is part of look-controls. I was able to modify the component so that I could drag vertically as well as horizontally: ``` AFRAME.components["look-controls"].Component.prototype.onTouchMove = function (t)...
So from modifying look-controls further: on the iPad, look controls's updateOrientation function is being reached every tick, but it isn't on android. updateOrientation just isn't ever called, which doesn't seem...
I think [this](https://github.com/AR-js-org/AR.js/blob/8609ac9689e0e9a4c0bfc44ea6ca7ae795b1da81/aframe/src/new-location-based/gps-new-camera.js#L73C8-L73C9) is the only place in the codebase which disables this attribute: ``` const mobile = this._isMobile(); this.el.setAttribute("look-controls-enabled", !mobile); if (mobile) { this.el.setAttribute("arjs-device-orientation-controls", true); } ``` So my...
@nickw1 don't suppose you know how I can work around the rotation issue? I need to implement some buttons or a slider to manually fix inaccuracies with the compass
@nickw1 I have buttons, the issue was I can't currently rotate entities on the fly with the code I have in my original post. I've been messing with look-controls though...
I've also noticed that if you remove videoTexture: true from the arjs attribute on the a-scene, then the embedded attribute is seemingly ignored and goes fullscreen anyway. Also sourceWidth, sourceHeight,...
> In general it seems that the location of points is related to a direction in which I start the app. > Of course I've tried to run current Location...
@nickw1 which example would you recommend? My current code uses the latest version of ar.js and a-frame with new location based components, and sets a north arrow entity to help...
@marlo22 I'd be very interested in that compass page if you make it, I was under the impression that the app not being able to find north accurately was an...