UNPKG

@distdev/vmix-utils

Version:

Utility functions and data for vMix

46 lines (43 loc) 1.04 kB
import { type VMixFunction } from '.' export type FunctionIDsPlayList = 'NextPlayListEntry' | 'PreviousPlayListEntry' | 'SelectPlayList' | 'StartPlayList' | 'StopPlayList' export const FunctionsPlayList: VMixFunction[] = [ { id: 'NextPlayListEntry', category: 'PlayList', description: 'Move to Next Item in a running PlayList', params: [], version: '21', }, { id: 'PreviousPlayListEntry', category: 'PlayList', description: 'Move to Previous Item in a running PlayList', params: [], version: '21', }, { id: 'SelectPlayList', category: 'PlayList', description: 'Open PlayList with Name matching Value', params: [ { name: 'Value', description: 'PlayList', required: true, }, ], version: '21', }, { id: 'StartPlayList', category: 'PlayList', params: [], version: '21', }, { id: 'StopPlayList', category: 'PlayList', params: [], version: '21', }, ]