{
  "$type": "at.atmosynth.module",
  "descriptionVersion": 1,
  "moduleId": "tremolo",
  "versionKey": "1",
  "name": "Tremolo",
  "description": "Sways the level of whatever passes through it, with its own wave built in. Level is the middle of the sway and Depth how far it moves either side, so a half of each reaches full volume at the peak and silence at the trough; together they should not pass 1, or the peaks are louder than what came in. Rate is the speed, and is an input as well as a knob: an LFO patched into Rate speeds the sway up and slows it down.",
  "audioInputs": [
    {
      "id": "in",
      "label": "In"
    },
    {
      "id": "rate",
      "label": "Rate"
    }
  ],
  "audioOutputs": [
    {
      "id": "out",
      "label": "Out"
    }
  ],
  "midiInputs": [],
  "nodes": [
    {
      "id": "in",
      "kind": "moduleInput",
      "options": {
        "input": "in"
      }
    },
    {
      "id": "vca",
      "kind": "gain",
      "options": {}
    },
    {
      "id": "lfo",
      "kind": "oscillator",
      "options": {
        "type": "sine"
      }
    },
    {
      "id": "depthgain",
      "kind": "gain",
      "options": {}
    },
    {
      "id": "ratein",
      "kind": "moduleInput",
      "options": {
        "input": "rate"
      }
    },
    {
      "id": "ratedepth",
      "kind": "gain",
      "options": {}
    },
    {
      "id": "out",
      "kind": "moduleOutput",
      "options": {
        "output": "out"
      }
    }
  ],
  "connections": [
    {
      "from": {
        "node": "in",
        "output": 0
      },
      "to": {
        "node": "vca",
        "input": 0
      }
    },
    {
      "from": {
        "node": "vca",
        "output": 0
      },
      "to": {
        "node": "out",
        "input": 0
      }
    },
    {
      "from": {
        "node": "lfo",
        "output": 0
      },
      "to": {
        "node": "depthgain",
        "input": 0
      }
    },
    {
      "from": {
        "node": "depthgain",
        "output": 0
      },
      "to": {
        "node": "vca",
        "param": "gain"
      }
    },
    {
      "from": {
        "node": "ratein",
        "output": 0
      },
      "to": {
        "node": "ratedepth",
        "input": 0
      }
    },
    {
      "from": {
        "node": "ratedepth",
        "output": 0
      },
      "to": {
        "node": "lfo",
        "param": "frequency"
      }
    }
  ],
  "automation": [],
  "parameters": [
    {
      "id": "rate",
      "label": "Rate (Hz)",
      "range": {
        "min": "0.05",
        "max": "20"
      },
      "default": "5",
      "targets": [
        {
          "node": "lfo",
          "param": "frequency"
        }
      ]
    },
    {
      "id": "rateAmount",
      "label": "Rate amount (Hz)",
      "range": {
        "min": "0",
        "max": "10"
      },
      "default": "1",
      "targets": [
        {
          "node": "ratedepth",
          "param": "gain"
        }
      ]
    },
    {
      "id": "shape",
      "label": "Shape",
      "values": [
        "sine",
        "triangle",
        "sawtooth",
        "square"
      ],
      "default": "sine",
      "targets": [
        {
          "node": "lfo",
          "option": "type"
        }
      ]
    },
    {
      "id": "depth",
      "label": "Depth",
      "range": {
        "min": "0",
        "max": "1"
      },
      "default": "0.5",
      "targets": [
        {
          "node": "depthgain",
          "param": "gain"
        }
      ]
    },
    {
      "id": "level",
      "label": "Level",
      "range": {
        "min": "0",
        "max": "1"
      },
      "default": "0.5",
      "targets": [
        {
          "node": "vca",
          "param": "gain"
        }
      ]
    }
  ],
  "sampleSlots": [],
  "createdAt": "2026-08-29T00:00:00.000Z"
}