Shortcut Composer

@Kaaivs

I do not know which video/smudge brushes are you refering. Most likely it is either from my brushpack:

Or from memileo’s impasto brushpack:


@Y.H.Lai

You could have as many of those as you want. In `actions.py` you need to create a new implementation by copy-pasting an action that’s already there (just by sure to use an unique name):

templates.PieMenu(
    name="My Custom Preset Picker",
    controller=controllers.PresetController(),
    instructions=[instructions.SetBrushOnNonPaintable()],
    deadzone_strategy=PieDeadzoneStrategy.PICK_PREVIOUS,
    values=Group("Erasers"),
    background_color=QColor(70, 70, 105, 190),
    active_color=QColor(110, 160, 235),
),

and then do the same in `actions.action` using the name you picked:

<Action name="My Custom Preset Picker">
<activationFlags>1</activationFlags>
<icon>config-popup-palette</icon>
</Action>
2 Likes