pybullet gui example disable explorer view by default

Post Reply
buzzo123
Posts: 6
Joined: Sat Sep 30, 2017 12:19 pm

pybullet gui example disable explorer view by default

Post 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
User avatar
Erwin Coumans
Site Admin
Posts: 4221
Joined: Sun Jun 26, 2005 6:43 pm
Location: California, USA
Contact:

Re: pybullet gui example disable explorer view by default

Post 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?
buzzo123
Posts: 6
Joined: Sat Sep 30, 2017 12:19 pm

Re: pybullet gui example disable explorer view by default

Post by buzzo123 »

yes, thanks! I could not find it
Post Reply