-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Open
Labels
Description
Problem to solve
I want to run a sequence of effects and therefore use a SequenceEffect.
But one of the effects should consist of two effects that run in parallel, hence a CombinedEffect/ParallelEffect would be nice.
Use case:
add(SequenceEffect([
MoveToEffect(),
CombinedEffect/ParallelEffect([
MoveToEffect(),
RotateEffect()
]),
MoveToEffect()
]));
Proposal
A CombinedEffect/ParallelEffect similar to SequenceEffect should be created.
More information
No response
Other
- Are you interested in working on a PR for this?