View Single Post
Old 05-28-2019, 04:06 AM   #2974
Geoff Waddington
Human being with feelings
 
Geoff Waddington's Avatar
 
Join Date: Mar 2009
Location: Dartmouth, Nova Scotia
Posts: 11,184
Default

Quote:
Originally Posted by MixMonkey View Post
Yep, me too
Aha, I think I see why:

Code:
	RotaryPush| TrackCycle PanWidthCycle 2
	PanWidthCycle+Rotary| TrackPan 0
	PanWidthCycle+Rotary| TrackPanWidth 1
In this case the membership is tied to PanWidthCycle -- RotaryPush cycles 2 members -- TrackPan and TrackPanWidth.

We can say PanWidthCycle defines a group.

With SubZones there is also a group notion, the SubZones are members of a group that will get Deactivted together:

Code:
Zone "VST: ReaComp (Cockos)"
    SelectedTrackNavigator
    Threshold FXParam Thresh
    Character FXParam Gain
    Attack FXParam Attack
    Release FXParam Release
    Ratio FXParam Ratio
    Compressor FXParam Bypass
    Parallel FXParam Wet
    CompressorMeter FXParam GainReductionDB
    DrillDownButton GoSubZone ReaCompSubZone "VST: ReaComp (Cockos)"
ZoneEnd

Zone ReaCompSubZone
    SelectedTrackNavigator
    Threshold FXParam Thresh
    Character FXParam Gain
    Attack FXParam Attack
    Release FXParam Release
    Ratio FXParam Ratio
    Compressor FXParam Bypass
    Parallel FXParam Wet
    CompressorMeter FXParam GainReductionDB
    DrillDownButton GoSubZone ReaCompSubSubZone "VST: ReaComp (Cockos)"
ZoneEnd

Zone ReaCompSubSubZone
    SelectedTrackNavigator
    Threshold FXParam Thresh
    Character FXParam Gain
    Attack FXParam Attack
    Release FXParam Release
    Ratio FXParam Ratio
    Compressor FXParam Bypass
    Parallel FXParam Wet
    CompressorMeter FXParam GainReductionDB
ZoneEnd
In this case we can say "VST: ReaComp (Cockos)" defines a group.

In one case the Group membership definitions precede (PanWidthCycle) and in the other case the Group membership definitions follow ("VST: ReaComp (Cockos)").
__________________
To install you need the CSI Software and Support Files
For installation instructions and documentation see the Wiki
Donate -- via PayPal to waddingtongeoff@gmail.com
Geoff Waddington is online now   Reply With Quote