Particle Edit Brush in Pie Menu

Hey guys,

I’m trying to make a Pie Menu for Particle Edit Brushes and got stuck.

This is an example code from WazouPieMenus for changing Brushes in SculptMode:
pie.operator(“paint.brush_select”, text=‘Pinch/Magnify’, icon=‘BRUSH_PINCH’).sculpt_tool= ‘PINCH’

What would the syntax be to get this into a Pie Menu:
bpy.context.scene.tool_settings.particle_edit.tool = ‘COMB’

Thanks in advance for anyone taking the time to help out.

I was able to make the Particle Edit Brushes PieMenu using the above command I got from the Info Window.
bpy.context.scene.tool_settings.particle_edit.tool = ‘COMB’
I had to make a Class###(bpy.types.Operator) for each brush, then call that in my Pie Menu. Worked out.

I’d like to create the same for Vertex, Texture and Weight Paint, but none of these modes are giving me anything in the Info Windows as I change brushes. Anyone know what the syntax/command would look like for changing brushes in those modes?

Solved