Skip to content

Instantly share code, notes, and snippets.

// Minimalism wizard, by rrc2soft. v1.31
// Requires Mozaic 1.03 or higher
// AU Parameters:
// User 0: PLAY ON/OFF
// User 1: PHASE ON/OFF
// User 2: SUBSTRACTION ON/OFF
// User 3: LENGTH ON/OFF
// User 4: SCALE ON/OFF
// User 5: TRANSPOSITION (64 = 0, 0 = -12, 127 = +12)
// User 6: HUMANIZATION
@OnLoad
// Assign CC's used by knobs. You can change this in another page
// to change the CC's that the XY pad will affect
if Unassigned listCC
listCC[0] = 1
listCC[1] = 2
listCC[2] = 7
listCC[3] = 71
listCC[4] = 74
endif
@rrc2soft
rrc2soft / Strummer
Created May 17, 2019 20:34
Strummer - A script for Bram Bos iOS app “Mozaic”
// Strummer, by rrc2soft. v1.1
// AU Parameter User 0: Change current preset
@OnLoad
//GUI - Basic
// We will actually update the GUI labels every 125ms
//...if needed, of course
LabelKnobs {Strumming Pattern}
LabelXY {X (Speed) Y (Velocity)}
LabelPads {Presets}
@rrc2soft
rrc2soft / Chordpeggio
Created May 17, 2019 20:32
Chordpeggio - A script for Bram Bos iOS app “Mozaic”
// Chordpeggio, by rrc2soft. v1.1
// AU Parameter User 0: Change current preset
@OnLoad
//VARIABLES
// Initialize array of temporal notes, to be saved to the ordered notes
FillArray tmpNotes, 0
FillArray tmpVelocity, 0
FillArray tmpChannel, 0
tmpNotesStored = 0