get all sequencers for each level BP

Hi all,

I have 3 levels and I have a BP actor that contains different information related to the levels. For each level, I have created 2 or 3 sequencer. So, inside the Actor BP, I want to get all sequencers for a specific level but I cannot figure out how to do it. I cannot find any Get Sequencers node in BP.

Is there a way to do that? or is there any alternative for that?
Thanks,

In Blueprints, there isn’t a direct “Get Sequencers” node. Instead, you can try organizing your sequencers into arrays or variables within your Actor BP. Then, you can access them based on the specific level you’re interested in. Alternatively, you could use tags or naming conventions to differentiate sequencers for each level.