Post #3943: You could use this in the custom tab

📋 Metadata

🏷️ Tags

popup-dialog custom-scripting intermediate solved

  • 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

🔗 View on Blender Artists