Seaside/SpyCustom/sdk/sequence_Transitioner.h
2021-06-16 18:48:15 +03:00

34 lines
550 B
C++

#ifndef SEQUENCE_TRANSITIONER_H
#define SEQUENCE_TRANSITIONER_H
#ifdef _WIN32
#pragma once
#endif
class CSequenceTransitioner
{
public:
void CheckForSequenceChange(
CStudioHdr* hdr,
int nCurSequence,
bool bForceNewSequence,
bool bInterpolate
);
void UpdateCurrent(
CStudioHdr* hdr,
int nCurSequence,
float flCurCycle,
float flCurPlaybackRate,
float flCurTime
);
void RemoveAll(void) { m_animationQueue.RemoveAll(); };
public:
CUtlVector< CAnimationLayer > m_animationQueue;
};
#endif