Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions client/src/engine/milkdrop/MilkdropBridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ export const MILKDROP_PRESET_NAMES = [
"Flexi - intensive shader fractal",
"Flexi - Julia fractal",
"martin + flexi - mandelbox explorer - high speed oversustained bipolar",
"LuxXx - GrindFace 225 mg dose ",
"fiShbRaiN + Flexi - witchcraft unleashed",
] as const;

export type MilkdropPresetName = typeof MILKDROP_PRESET_NAMES[number];
Expand Down Expand Up @@ -128,6 +130,8 @@ export const MILKDROP_PRESET_MAP: Record<string, string> = {
"MilkDrop: Shader Fractal": "Flexi - intensive shader fractal",
"MilkDrop: Julia Fractal": "Flexi - Julia fractal",
"MilkDrop: Mandelbox Bipolar": "martin + flexi - mandelbox explorer - high speed oversustained bipolar",
"MilkDrop: Intense Grind": "LuxXx - GrindFace 225 mg dose ",
"MilkDrop: Unleashed Witch": "fiShbRaiN + Flexi - witchcraft unleashed",
};

export function isMilkdropPreset(name: string): boolean {
Expand Down
2 changes: 2 additions & 0 deletions client/src/engine/milkdrop/MilkdropTextureBridge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ const JSON_PRESET_LOADERS: Record<string, () => Promise<any>> = {
"Flexi - intensive shader fractal": () => import("butterchurn-presets/presets/converted/Flexi - intensive shader fractal.json"),
"Flexi - Julia fractal": () => import("butterchurn-presets/presets/converted/Flexi - Julia fractal.json"),
"martin + flexi - mandelbox explorer - high speed oversustained bipolar": () => import("butterchurn-presets/presets/converted/martin + flexi - mandelbox explorer - high speed oversustained bipolar.json"),
"LuxXx - GrindFace 225 mg dose ": () => import("butterchurn-presets/presets/converted/LuxXx - GrindFace 225 mg dose .json"),
"fiShbRaiN + Flexi - witchcraft unleashed": () => import("butterchurn-presets/presets/converted/fiShbRaiN + Flexi - witchcraft unleashed.json"),
};

const CANVAS_WIDTH = 1280;
Expand Down
4 changes: 4 additions & 0 deletions client/src/lib/visualizer-presets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,8 @@ export const presets = [
"MilkDrop: Shader Fractal",
"MilkDrop: Julia Fractal",
"MilkDrop: Mandelbox Bipolar",
"MilkDrop: Intense Grind",
"MilkDrop: Unleashed Witch",
] as const;

export type PresetName = typeof presets[number];
Expand Down Expand Up @@ -320,6 +322,8 @@ export const presetCategories = [
{ name: "MilkDrop: Shader Fractal" as PresetName, icon: "milkdrop", shortName: "Shader" },
{ name: "MilkDrop: Julia Fractal" as PresetName, icon: "milkdrop", shortName: "Julia" },
{ name: "MilkDrop: Mandelbox Bipolar" as PresetName, icon: "milkdrop", shortName: "Bipolar" },
{ name: "MilkDrop: Intense Grind" as PresetName, icon: "milkdrop", shortName: "GrindFace" },
{ name: "MilkDrop: Unleashed Witch" as PresetName, icon: "milkdrop", shortName: "Witchcraft" },
],
},
] as const;
Expand Down
Loading