Replies: 1 comment
-
Another way I found is through |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm using a combination of
open3d::visualization::gui::Application::GetInstance().Initialize(path)
andgui::Application::GetInstance().AddWindow( std::make_shared<visualization::visualizer::O3DVisualizer>() )
for visualization.By default, the
O3DVisualizer
seems to inherits the directory path assign to the application, and loads the skybox (IBL?) from it. My problem is, it's always using the XZ plane as ground plane for the background skybox. This is true even withSetGroundPlane()
set.The closest I can find is the
RotateIBLInteractor
that response when user use the scene select control panel to rotate the environment.Is there any way I can set the background skybox manually through APIs?
Beta Was this translation helpful? Give feedback.
All reactions