How to adjust the default viewing height of the new first view tool?

as far as I understand it, this new first view tool is a roaming tool with gravity. The default view of this tool is a little high. How to set this height?


I am not sure which part of the height you are referring to, so I estimate that you are talking about the distance between the camera and the floor version, this setting is adjustable:

//1::
viewer.loadExtension( 'Autodesk.BimWalk', { cameraDistanceFromFloor: 1.0 } );

//2: BimWalk :
var bimWalkExt = viewer.getExtension( 'Autodesk.BimWalk' );
bimWalkExt.set( 'cameraDistanceFromFloor', 1.0 );

//3: Viewer :
var config3d = {
    cameraDistanceFromFloor: 1.0,
    extensions: [ 'Autodesk.BimWalk' ]
};

var viewer = new Autodesk.Viewing.Private.GuiViewer3D( container, config3d );

I hope this is helpful to you!

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b339c0-2be8e.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b339c0-2be8e.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?