Removed unused types

This commit is contained in:
Colin Basnett
2026-02-06 17:54:21 -08:00
parent 6dfc02b262
commit 41e772e63c
2 changed files with 0 additions and 10 deletions

View File

@@ -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,
)

View File

@@ -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