GP: New Time Offset custom frame range parameters
These parameters allow to define a frame range for the animation loop and make possible to loop a section while the scene is playing.
This commit is contained in:
@@ -1847,6 +1847,18 @@ class DATA_PT_gpencil_modifiers(ModifierButtonsPanel, Panel):
|
||||
row.enabled = md.mode != 'FIX'
|
||||
row.prop(md, "frame_scale")
|
||||
|
||||
row = layout.row()
|
||||
row.separator()
|
||||
|
||||
row = layout.row()
|
||||
row.enabled = md.mode != 'FIX'
|
||||
row.prop(md, "use_custom_frame_range")
|
||||
|
||||
row = layout.row(align=True)
|
||||
row.enabled = md.mode != 'FIX' and md.use_custom_frame_range is True
|
||||
row.prop(md, "frame_start")
|
||||
row.prop(md, "frame_end")
|
||||
|
||||
row = layout.row()
|
||||
row.enabled = md.mode != 'FIX'
|
||||
row.prop(md, "use_keep_loop")
|
||||
|
Reference in New Issue
Block a user