@audiotool/nexus - v0.0.12
    Preparing search index...

    Type Alias MixerStripGrouping

    key value
    type entity
    key "mixerStripGrouping"
    is

    Groups a channel or group strip under another group strip. The audio of grouped strips passed through the group strip instead of going directly to the main out. Strips that aren't grouped are implicitly connected to the main out.

    The graph created with nodes connected by strip groupings must be a tree.

    type MixerStripGrouping = {
        childStrip: PrimitiveField<NexusLocation, "immut">;
        groupStrip: PrimitiveField<NexusLocation, "immut">;
    }
    Index

    Properties

    childStrip: PrimitiveField<NexusLocation, "immut">

    The child strip that is grouped by the group strip. Can be either a channel or group strip.

    key value
    default no default, required
    required true
    targets api.TargetType.MixerStripGroupChild, meaning one of:
    entities.MixerChannel,
    entities.MixerGroup
    immutable true
    groupStrip: PrimitiveField<NexusLocation, "immut">

    The group strip under which the child strip is grouped. Can only be a group strip.

    key value
    default no default, required
    required true
    targets api.TargetType.MixerStripGroup, meaning one of:
    entities.MixerGroup
    immutable true