Getting Started
Mixi Decks is a collection of esoteric, generative, and strictly typed plugins designed for the MIXI audio platform.
Integration
Each Deck is totally self-contained. To integrate a deck:
- Download the ZIP file for the deck you want from the GitHub Releases page.
- Unzip it and drop the folder into
src/decks/of your Mixi Web Application. - If the plugin has an attached
<plugin>-wasmfolder (likeTurbo303orTurboFM), drop that folder alongside it. - Open
src/decks/index.tsin your MIXI project and register the Deck:
typescript
import { lazy } from 'react';
export const HOUSE_DECKS = [
// ... other decks
{
mode: 'turbo-pulsar',
label: 'TURBO PULSAR',
accentColor: '#ff00ff',
component: lazy(() =>
import('./TurboPulsar/TurboPulsarDeck').then((m) => ({ default: m.TurboPulsarDeck })),
),
}
];- The plugin is now fully integrated into the master web audio graph.