📋 Metadata

💬 Content

Kim_Quyen:

I want to get 2 settings in this red box attached to the Side Panel or Popup Dialog, is there any way to do it?

Hi @Kim_Quyen,
If you know Python you can find the code to use in Custom tab in Blender’s Text Editor by pressing Edit Source button in RMB context menu of the buttons.
To enable Edit Source feature go to Edit > Preferences > Interface > Display and activate Developer Extras.

Here is the code for brush texture (Custom tab):

b = brush(); b and L.template_ID(b, 'texture', new='texture.new')

Texture image (Custom tab):

b = brush(); t = b and b.texture; t and L.template_image(t, "image", t.image_user)

❤️ 4 likes


🔗 View on Blender Artists