class CAnimParamType;
IMovieSystem.h
Common parameters of animation node.
const uint kParamTypeVersion = 8;
bool operator !=(const CAnimParamType & animParamType) const;
bool operator <(const CAnimParamType & animParamType) const;
void operator =(const int type);
Convert from old enum or int
void operator =(const string & name);
bool operator ==(const CAnimParamType & animParamType) const;
CAnimParamType();
CAnimParamType(const EAnimParamType type);
CAnimParamType(const string & name);
const char * GetName() const;
Get name
EAnimParamType GetType() const;
Convert to enum. This needs to be explicit, otherwise operator== will be ambiguous
inline void Serialize(XmlNodeRef & xmlNode, bool bLoading, const uint version = kParamTypeVersion);
Serialization. Defined in Movie.cpp
friend class CMovieSystem;