Blog Workflow 9 min read

Trance Gate Sequencing — Gamepad as the Rhythm Source

Build a trance gate rig with a gamepad. Face buttons swap gate patterns, triggers ride depth, touchpad sweeps the filter. 138 BPM hands-up moments on demand.

By Aidxn Design

Trance lives on the gate. The held pad chopped to 1/16 steps with a slow attack is the genre's signature — that hands-up, half-time euphoria sound that Above & Beyond, Armin van Buuren, and every Anjuna release leans on. The trick is the gate has to swap pattern, depth, and attack while the track is running. A gamepad makes that live. This guide builds a trance gate gamepad rig where face buttons swap four gate patterns on the next bar, triggers ride depth, and the touchpad sweeps the filter build. The Universal Controller MIDI bridge ships with the Trance profile pre-baked.

TL;DR
  • Face buttons swap four gate patterns — even, syncopated, dotted, triplet.
  • Right trigger rides gate depth — squeeze for chop, release for pad.
  • Left stick Y rides gate attack — soft swell to hard chop.
  • Touchpad X sweeps the low-pass filter for build-ups.
  • L1 fires a noise riser timed to the next 8-bar boundary.
  • Tempo: 138 BPM by default, syncs to host clock.

The trance gate — what it actually is

A trance gate is a side-chained volume gate or a step-sequenced volume envelope chopping a sustained sound into rhythmic slices. Hold a pad chord, run it through a gate that opens for 1/32 every 1/16 step, and you get the chuh-chuh-chuh-chuh pulse the genre is built on. Vary the attack and you go from sharp chop (fast attack) to smooth swell (slow attack). Vary the step pattern and you go from straight 1/16 to syncopated patterns that breathe. The gate is the rhythm; the held pad is just the timbre.

Four gate patterns under your thumb

The classic trance pattern is straight 1/16 — every step open, even pulses. Useful for the build. Pattern two is 1/16 with skips on steps 7 and 15 — the slight syncopation that gives Above & Beyond their forward motion. Pattern three is dotted 1/8 — broader pulses, used for verses and breaks. Pattern four is 1/12 triplets — a polyrhythm against the 4/4 kick that adds tension before a drop. Map one pattern per face button and you can swap on the fly, retriggered to the next bar by the bridge so you never get a glitch.

# ~/.config/universal-controller-midi/profiles/trance-gate.toml
[buttons.cross]
mode    = "pattern_select"
pattern = "1_16_even"           # 16 steps, all open
channel = 1
program = 1                     # PC 1 → plugin recalls pattern 1

[buttons.square]
mode    = "pattern_select"
pattern = "1_16_syncopated"     # skips on 7 and 15
channel = 1
program = 2

[buttons.triangle]
mode    = "pattern_select"
pattern = "dotted_1_8"
channel = 1
program = 3

[buttons.circle]
mode    = "pattern_select"
pattern = "1_12_triplet"
channel = 1
program = 4

[bar_quantise]
enabled = true
boundary = "1/4"                # swap on next beat, not next sub-step

[triggers.right]
cc      = 8     # gate dry/wet
channel = 1
curve   = "exponential"

[sticks.left.y]
cc      = 9     # gate attack time
channel = 1
deadzone = 0.05

[touchpad]
mode = "xy"
cc_x = 16       # low-pass filter cutoff
cc_y = 17       # filter resonance

[shoulder.l1]
mode      = "one_shot"
note      = 80
channel   = 1
quantise  = "8_bar"             # waits for next 8-bar boundary

Mapping the technique to the controller

Trance techniqueGamepad inputMIDIWhat it does
Even 1/16 gateCrossPC 1Straight chop — main verse pattern
Syncopated 1/16 gateSquarePC 2Skips on 7 and 15 — forward motion
Dotted 1/8 gateTrianglePC 3Wider pulses — breakdown feel
1/12 triplet gateCirclePC 4Polyrhythm against the kick — tension
Gate depth rideRight triggerCC 8Squeeze for full chop, release for legato
Gate attack rideLeft stick YCC 9Up = soft swell, down = sharp chop
Filter cutoff sweepTouchpad XCC 16Build-up filter open over 8 bars
Filter resonanceTouchpad YCC 17Push for self-oscillation on builds
Noise riser (8-bar)L1Note 80One-shot riser quantised to next 8-bar boundary
Snare rollR1 (gate)Note 81Hold for 1/32 snare buildup
Drop triggerOptionsNote 82One-shot crash + reverb wash on next bar
Custom 16-step patternL3PC 5Hand-written pattern stored in bridge

The build-up — three minutes of single-finger performance

Practical pattern, three minutes at 138 BPM. Bars 1–8: cross active (even 1/16), right trigger at 50%, left stick Y centred, touchpad X at 30%. Verse texture. Bars 9–16: swap to square (syncopated). Bars 17–24: swap to triangle (dotted). Right trigger rides up to 80% over these 8 bars. Bars 25–32: hit L1 at bar 25 — the noise riser starts at bar 33. Push the touchpad X from 30% to 100% across these 8 bars. Touchpad Y rises from 0 to 60% (filter opens, resonance lifts). Right trigger maxes to 127. Bar 33: the riser hits its peak; you hit Options — drop. The next 8 bars are the hands-up moment. Switch to cross again for the drop, depth at 127, attack hard. The whole sequence is four button presses, one touchpad sweep, two riser triggers. Single hand performance, full uplifting-trance arc.

Bar quantise — why it matters at 138 BPM

At 138 BPM a 1/16 step is 109 ms. If you hit cross at the wrong sub-step, the gate pattern can shift phase and the whole thing sounds glitched. The bridge's bar-quantise feature holds your button press until the next 1/4 boundary (or 1/2 or full bar, configurable) and then fires it. The pattern always changes on a beat — never mid-step. Latency is the cost: up to 435 ms of wait if you press just after a downbeat. The tradeoff is worth it for clean transitions. Drop the quantise to 1/16 if you want immediate response and accept the occasional glitched transition.

Filter sweep on the touchpad — the build-up trick

The touchpad is the secret weapon for trance builds. Drag a single finger from the left edge to the right over 8 bars and you get a continuous filter sweep from closed to open with sub-millimetre resolution — 128 steps across 52 mm of pad. Add resonance on Y and you can punch the build into self-oscillation right at the drop. Far smoother than turning a mouse wheel or riding a touch strip — your eyes stay on the floor, not the laptop. See the Serum macro knob workflow for related touchpad-as-XY uses and the sidechain compression button piece for the kick-mute side of the rig.

Limits — when a gamepad is not enough

Honest caveats. The four gate patterns are stored as plugin program changes; if your gate plugin does not support program change recall the patterns will not swap. Volume Shaper, Fabfilter Volcano, and Cableguys ShaperBox all do. Ableton's stock Gate does not — you need a multi-bus workaround or a third-party plugin. Second, this rig is built for a single pad source. Layered pads with different gate patterns need parallel chains (one per pad) and quickly outgrow the controller's input count. At that point you are looking at a Push 3 or a Maschine. For a single-pad live gate rig, though, the gamepad does the job and fits in your jacket. Background reading: the trance music article covers the genre's history if you are coming to this fresh.

Trance is a stadium genre played by one person in front of a laptop. A gamepad earns its keep when it makes that one person look like a band. Install Universal Controller MIDI, load the Trance profile, set the host to 138 BPM, and put your hands in the air.

Keep reading

More setup walkthroughs