Is there any way to disable gravity in Autodesk.BimWalk extension? Currently, the camera will keep descend until a floor is hit. I would like to be able to float in air.
Try this with the latest version (6.2+) of Viewer:
// disable gravity upon extension load
viewer.loadExtension('Autodesk.BimWalk').then(function(ext) {ext.tool.navigator.enableGravity(false)})
// disable the same post load
viewer.getExtension('Autodesk.BimWalk').tool.navigator.enableGravity(false)