diff --git a/src/decorators/surface.ts b/src/decorators/surface.ts index 13d1637..00b3d5c 100644 --- a/src/decorators/surface.ts +++ b/src/decorators/surface.ts @@ -77,6 +77,11 @@ export function decorateSurface(surface: MR_DeviceSurface) { // `mOnProcessValueChange` fader.mTouchedValueInternal = surface.makeCustomValueVariable("faderTouchedInternal"); + // Cubase 13 only: + if (fader.mSurfaceValue.mTouchState) { + fader.mSurfaceValue.mTouchState.bindTo(fader.mTouchedValue); + } + return fader; };