blob: 679801ca45cf00d5b94a0132634dcb9c8d0f3ad9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================
#ifndef DMX_TO_VCD_H
#define DMX_TO_VCD_H
#ifdef _WIN32
#pragma once
#endif
class CDmeFilmClip;
class CChoreoScene;
bool ConvertSceneToDmx( CChoreoScene *scene, CDmeFilmClip *dmx );
bool ConvertDmxToScene( CDmeFilmClip *dmx, CChoreoScene *scene );
#define VCD_SCENE_RAMP_TRACK_GROUP_NAME "scene_ramp"
#define VCD_GLOBAL_EVENTS_TRACK_GROUP_NAME "global_events"
#endif // DMX_TO_VCD_H
|