Put Addon on the Active Tool Panel

Hi,

I made an addon a while back and that sits on the 3D View N Panel.
I would like to move it to the “Tool” panel on the acive tool N Panel.

But, I can’t seem to get it to work.

Here is my initialize/install code…

bl_info = {
“name”: “Quick Tasks”,
“author”: “Pixelink Media”,
“version”: (9.0),
“blender”: (2, 80, 0),
“location”: “View3D”,
“description”: “Various Quick Blender Tasks”,
“warning”: “”,
“wiki_url”: “”,
“category”: “Tool”,
}

I basically want it where the “Scatter Objects” (By Jacques) addon is

Any Help would be appreciate

Forgot to post my panel code too

class QTASK_PT_Panel(bpy.types.Panel):
bl_idname = “QTASK_PT_Panel”
bl_label = “Presets”
bl_category = “Quick Tasks”
bl_space_type = “VIEW_3D”
bl_region_type = “TOOLS”

This is the panel I want to move it to… (just the tool panel), it will be its own panel not on one of the 3 that are there now.

image

I figured it out…

Just changed to n my panel py

bl_space_type = ‘VIEW_3D’
bl_region_type = ‘UI’
bl_category = “Tool”

Thanks anyways

3 Likes