import spreadsheet

This commit is contained in:
“christopheseux”
2023-05-08 18:25:04 +02:00
parent 1ff1b37adb
commit 1ee883957f
7 changed files with 177 additions and 10 deletions
+18
View File
@@ -68,6 +68,23 @@ class VSETB_PT_main(VSETB_main, Panel):
# Rename
class VSETB_PT_strip(Panel):
bl_space_type = "SEQUENCE_EDITOR"
bl_region_type = "UI"
bl_category = "Strip"
bl_label = "VSE ToolBox"
#bl_order = 0
def draw(self, context):
prefs = get_addon_prefs()
layout = self.layout
settings = get_strip_settings()
layout.use_property_split = True
layout.use_property_decorate = False
layout.prop(settings, 'source_name', text='Source Name')
class VSETB_PT_sequencer(VSETB_main, Panel):
bl_label = "Sequencer"
@@ -324,6 +341,7 @@ classes = (
VSETB_PT_metadata,
VSETB_PT_presets,
VSETB_PT_exports,
VSETB_PT_strip
)
def register():