Create sequences reel from python?

Hi.
I’d like to create a sequences reel in my reels group in the desktop using python. I can find information on reels including the create_reel() function in the documentation but nothing on sequences reels. Is it possible?

Cheers

The create_reel function on a PyReelGroup has a “sequence” argument that is False by default that you can use.
new_sequence_reel = reel_group.create_reel(name="MySequenceReel", sequence=True)

2 Likes

Awesome, thanks!
I saw it in the documentation now when you mentioned it, I had tunnel vision searching for a separate reel type.

Cheers!