Post #4058: > Hi,
📋 Metadata
- Author: Stefakapapy
- Date: 2021-09-13 14:42:15
- Type:
question - Quality Score: 8/10
- Reply to: post_04022
🏷️ Tags
panel-group addon-integration intermediate solved
⚙️ Related PME Features
- Panel Group Editor
- Python Scripting
💬 Content
Hi,
Can’t remember if I ever asked this question but anyway here it isIs it possible to display a created panel group if and only if a certain addon is installed and activated ?
Thanks for all your good work, without PME I could simply not use Blender
I’m answering myself
In the panel group condition, type :
import addon_utils; return addon_utils.check("Addon")[0]
where you should replace Addon (but keep the “”) by your addon’s name (without .py) if this is a simple addon or the folder name if the addon is contained in a folder
Hope it could help
❤️ 2 likes
