I have a camera attached to a head template and also added this camera inside a rig. The rig is constrained to a nav-mesh, but I am facing an issue where only one of the controls seems to be working - either the movement control of the rig or the WASD control of the camera, not both.
<a-entity id="player-rig" movement-controls="constrainToNavMesh" >
<a-entity
id="player"
networked="template:#avatar-template;attachTemplateToLocal:false;"
camera="active:true;"
wasd-controls="acceleration:12;"
position="0 3.5 0"
look-controls>
</a-entity>
</a-entity>
If there is any good way to make these both work together seamlessly, please share your insights with me. Thank you!