Sequencer: (small Durian wish)

* new operator: set rendersize (SEQUENCE_OT_rendersize) sets the render output size in the current scene to the size of the active sequence strip
* works for movies and images right now
* TODO: currently only works if image or movie strip has been loaded (as in showing the preview for example) - reason is that otherwise the size is not initialized in the strip
This commit is contained in:
Andrea Weikert
2009-11-08 15:03:10 +00:00
parent af011f33a6
commit 9e90cf6d78
4 changed files with 53 additions and 0 deletions

View File

@@ -245,12 +245,14 @@ class SEQUENCER_MT_strip(bpy.types.Menu):
elif stype == 'IMAGE':
layout.itemS()
layout.itemO("sequencer.image_change")
layout.itemO("sequencer.rendersize")
elif stype == 'SCENE':
layout.itemS()
layout.itemO("sequencer.scene_change", text="Change Scene")
elif stype == 'MOVIE':
layout.itemS()
layout.itemO("sequencer.movie_change")
layout.itemO("sequencer.rendersize")
layout.itemS()