blob: e9b7ae0fd7f1471d8ac6a028158a477c37371843 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
echo ">>> Enable the plugin:"
echo "Settings -> Configure Krita -> Python Plugin Manager -> Blender Layer"
echo ">>>"
echo ">>> (If the Blender Layer option is not visible under"
echo ">>> Settings -> Dockers, you may need to restart Krita.)"
echo ">>>"
echo ">>> To show the plugin docker:"
echo "Settings -> Dockers -> Blender Layer"
}
post_upgrade() {
post_install
}
|