Removed unused types
This commit is contained in:
@@ -20,10 +20,6 @@ material_order_mode_items = (
|
||||
('MANUAL', 'Manual', 'Manually arrange the materials'),
|
||||
)
|
||||
|
||||
class PSK_PG_material_list_item(PropertyGroup):
|
||||
material: PointerProperty(type=Material)
|
||||
index: IntProperty()
|
||||
|
||||
|
||||
class PSK_PG_material_name_list_item(PropertyGroup):
|
||||
material_name: StringProperty()
|
||||
@@ -56,7 +52,6 @@ class PSK_PG_export(PropertyGroup, PskExportMixin):
|
||||
|
||||
|
||||
_classes = (
|
||||
PSK_PG_material_list_item,
|
||||
PSK_PG_material_name_list_item,
|
||||
PSK_PG_export,
|
||||
)
|
||||
|
||||
@@ -2,11 +2,6 @@ from bpy.types import Material
|
||||
|
||||
from ...shared.types import BpyCollectionProperty, ExportSpaceMixin, TransformMixin, PsxBoneExportMixin, TransformSourceMixin
|
||||
|
||||
# TODO: eliminate this one and just use the name version with a prop version to fetch from data
|
||||
class PSK_PG_material_list_item:
|
||||
material: Material
|
||||
index: int
|
||||
|
||||
|
||||
class PSK_PG_material_name_list_item:
|
||||
material_name: str
|
||||
|
||||
Reference in New Issue
Block a user