Post #3943: You could use this in the custom tab
📋 Metadata
- Author: Motiomancer
- Date: 2021-07-15 14:08:02
- Type:
answer - Quality Score: 8/10
- Reply to: post_03942
🏷️ Tags
popup-dialog custom-scripting intermediate solved
⚙️ Related PME Features
- Popup Dialog Editor
- Python Scripting
- Property Editor
💬 Content
You could use this in the custom tab
L.prop(C.object, "color", text='', index=3, slider=True)
or this if you want it to disappear while not having an image selected
L.prop(C.object, "color", text='', index=3, slider=True) if C.active_object.type == 'EMPTY' and C.object.empty_display_type == 'IMAGE' else None