HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PRM_ChanState.h
Go to the documentation of this file.
1 /*
2  * PROPRIETARY INFORMATION. This software is proprietary to
3  * Side Effects Software Inc., and is not to be reproduced,
4  * transmitted, or disclosed in any way without written permission.
5  *
6  * NAME: PRM_ChanState.h (Parameter Library)
7  *
8  * COMMENTS:
9  */
10 
11 #ifndef __PRM_ChanState__
12 #define __PRM_ChanState__
13 
15 {
16  PRM_NO_KEYS = 0, // not animated
17  PRM_AT_KEY = 0x01, // either at a keyframe, or there is no channel
18  PRM_OFF_KEY = 0x02, // a channel exists and curr time not at keyfr
19  PRM_CHANGE_PENDING = 0x04 // like above, but user has attempted val change
20 };
21 
22 #endif
PRM_ChanState
Definition: PRM_ChanState.h:14