From b6c7ec15463993865dc96b099fdb7aaf8fa69463 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 27 Sep 2016 15:43:35 +0200 Subject: [PATCH] Removed unused Attract properties --- blender_cloud/attract/__init__.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/blender_cloud/attract/__init__.py b/blender_cloud/attract/__init__.py index 5467f03..9a77d28 100644 --- a/blender_cloud/attract/__init__.py +++ b/blender_cloud/attract/__init__.py @@ -384,8 +384,6 @@ def register(): bpy.types.Sequence.atc_name = bpy.props.StringProperty(name="Shot Name") bpy.types.Sequence.atc_description = bpy.props.StringProperty(name="Shot description") bpy.types.Sequence.atc_notes = bpy.props.StringProperty(name="Shot notes") - bpy.types.Sequence.atc_cut_in = bpy.props.IntProperty(name="Cut in") - bpy.types.Sequence.atc_cut_out = bpy.props.IntProperty(name="Cut out") # TODO: get this from the project's node type definition. bpy.types.Sequence.atc_status = bpy.props.EnumProperty( @@ -416,8 +414,6 @@ def unregister(): del bpy.types.Sequence.atc_name del bpy.types.Sequence.atc_description del bpy.types.Sequence.atc_notes - del bpy.types.Sequence.atc_cut_in - del bpy.types.Sequence.atc_cut_out del bpy.types.Sequence.atc_status del bpy.types.Sequence.atc_order bpy.utils.unregister_module(__name__)