Page 1 of 1

pybullet gui example disable explorer view by default

Posted: Sat Sep 30, 2017 12:27 pm
by buzzo123
When I run some code with p.connect(p.GUI) I need to see a full view of my objects without left and right menu, how can I turn off these menus by default in the code?

thanks

Re: pybullet gui example disable explorer view by default

Posted: Sat Sep 30, 2017 6:03 pm
by Erwin Coumans
You can use

Code: Select all

p.configureDebugVisualizer(p.COV_ENABLE_GUI,0)
See also the doc about configureDebugVisualizer in http://pybullet.org

Does that work for you?

Re: pybullet gui example disable explorer view by default

Posted: Sun Oct 01, 2017 8:47 am
by buzzo123
yes, thanks! I could not find it