mirror of
https://github.com/0TheSpy/Seaside.git
synced 2025-01-07 10:03:29 +08:00
34 lines
550 B
C++
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 |