@distdev/vmix-utils
Version:
Utility functions and data for vMix
41 lines (40 loc) • 1.24 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FunctionsPreset = void 0;
exports.FunctionsPreset = [
{
id: 'LastPreset',
category: 'Preset',
description: 'Load the last preset',
params: [],
version: '21',
},
{
id: 'OpenPreset',
category: 'Preset',
description: 'Load the preset from the specified Filename',
params: [
{
name: 'Value',
description: 'Filename',
required: false,
},
],
info: "Will open a Open window if no value is specified. If a full path isn't specified the file will be saved to the vMix install directory",
version: '21',
},
{
id: 'SavePreset',
category: 'Preset',
description: 'Save preset to the specified Filename',
params: [
{
name: 'Value',
description: 'Filename',
required: false,
},
],
info: "Will open a Save As window if no value is specified. If a full path isn't specified the file will be saved to the vMix install directory",
version: '21',
},
];