Blender Kitsu: Refactor Shot Builder #183
@ -1,6 +1,18 @@
|
|||||||
import bpy
|
import bpy
|
||||||
|
|
||||||
|
|
||||||
|
class KITSU_PT_new_shot_panel(bpy.types.Panel): # TODO Remove (for testing only)
|
||||||
|
bl_space_type = "VIEW_3D"
|
||||||
|
bl_region_type = "UI"
|
||||||
|
bl_label = "New Shot"
|
||||||
|
bl_category = "New Shot"
|
||||||
|
|
||||||
|
def draw(self, context):
|
||||||
|
self.layout.operator("kitsu.build_new_shot")
|
||||||
|
|
||||||
|
|
||||||
|
classes = (KITSU_PT_new_shot_panel,)
|
||||||
|
|
||||||
|
|
||||||
def register():
|
def register():
|
||||||
for cls in classes:
|
for cls in classes:
|
||||||
|
Loading…
Reference in New Issue
Block a user