Blender_Kitsu & Render Review: Remove Metastrip Filepath #80

Merged
Nick Alberelli merged 2 commits from fix/meta-strip-file-path into main 2023-06-15 21:28:34 +02:00
Showing only changes of commit 64595c84c3 - Show all commits

View File

@ -55,7 +55,6 @@ def addon_prefs() -> bpy.types.AddonPreferences:
def create_meta_strip( def create_meta_strip(
context: bpy.types.Context, strip: bpy.types.Sequence context: bpy.types.Context, strip: bpy.types.Sequence
) -> bpy.types.MovieSequence: ) -> bpy.types.MovieSequence:
# Get frame range information from current strip. # Get frame range information from current strip.
strip_range = range(strip.frame_final_start, strip.frame_final_end) strip_range = range(strip.frame_final_start, strip.frame_final_end)
channel = strip.channel + 1 channel = strip.channel + 1
@ -63,7 +62,7 @@ def create_meta_strip(
# Create new meta strip. # Create new meta strip.
meta_strip = context.scene.sequence_editor.sequences.new_movie( meta_strip = context.scene.sequence_editor.sequences.new_movie(
f"{strip.name}_metastrip", f"{strip.name}_metastrip",
addon_prefs().metastrip_file, "",
strip.channel + 1, strip.channel + 1,
strip.frame_final_start, strip.frame_final_start,
) )
@ -94,7 +93,6 @@ def link_strip_by_name(
shot_name: str, shot_name: str,
sequence_name: str, sequence_name: str,
) -> None: ) -> None:
# Get seq and shot. # Get seq and shot.
active_project = cache.project_active_get() active_project = cache.project_active_get()
seq = active_project.get_sequence_by_name(sequence_name) seq = active_project.get_sequence_by_name(sequence_name)