如图
默认加载为这个角度
能在加载后就是
如图角度么?
可以的,只要监听一个 Autodesk.Viewing.GEOMETRY_LOADED_EVENT 事件和调用 Viewer3D#setViewCube() 函数就可以达到了,请参考帮助文档:https://developer.autodesk.co...
Autodesk.Viewing.GEOMETRY_LOADED_EVENT
Viewer3D#setViewCube()
const onGeometriesLoaded = function() { viewer.removeEventListener( Autodesk.Viewing.GEOMETRY_LOADED_EVENT, onGeometriesLoaded ); // Postpone this action to next frame setTimeout(function() { viewer.setViewCube( 'top/back/left' ); }, 1000); }; viewer.addEventListener( Autodesk.Viewing.GEOMETRY_LOADED_EVENT, onGeometriesLoaded );
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
可以的,只要监听一个
Autodesk.Viewing.GEOMETRY_LOADED_EVENT
事件和调用Viewer3D#setViewCube()
函数就可以达到了,请参考帮助文档:https://developer.autodesk.co...