WIP: Blender Kitsu: Convention Checker #124
@ -4,6 +4,18 @@ from bpy.ops import op_as_string
|
||||
from pathlib import Path
|
||||
|
||||
|
||||
class KITSU_PT_convention_checker_temp_ui(bpy.types.Panel):
|
||||
# TODO: Remove this UI, for Testing only
|
||||
|
||||
bl_category = "Checker Test"
|
||||
bl_label = "Convention Chekcer Test UI"
|
||||
bl_space_type = "VIEW_3D"
|
||||
bl_region_type = "UI"
|
||||
|
||||
def draw(self, context: bpy.types.Context) -> None:
|
||||
layout = self.layout
|
||||
layout.operator("kitsu.convention_checker")
|
||||
|
||||
|
||||
class KITSU_OT_test_op(bpy.types.Operator):
|
||||
bl_idname = "kitsu.test_op"
|
||||
@ -68,6 +80,7 @@ class KITSU_OT_convention_checker(bpy.types.Operator):
|
||||
classes = [
|
||||
KITSU_OT_test_op,
|
||||
KITSU_OT_convention_checker,
|
||||
KITSU_PT_convention_checker_temp_ui,
|
||||
]
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user