This commit is contained in:
romkazvo
2023-08-07 19:29:24 +08:00
commit 34d6c5d489
4832 changed files with 1389451 additions and 0 deletions

14
CryMovie/ExprTrack.h Normal file
View File

@@ -0,0 +1,14 @@
#pragma once
#include "IMovieSystem.h"
#include "AnimTrack.h"
class CExprTrack : public TAnimTrack<IExprKey>
{
public:
EAnimTrackType GetType() { return ATRACK_EXPRESSION; };
EAnimValue GetValueType() { return AVALUE_EXPRESSION; };
void GetKeyInfo( int key,const char* &description,float &duration );
void SerializeKey( IExprKey &key,XmlNodeRef &keyNode,bool bLoading );
};