2016-04-10 21:22:59 +00:00
|
|
|
#ifndef __PSHAG_CANIMTREEDOUBLECHILD_HPP__
|
|
|
|
#define __PSHAG_CANIMTREEDOUBLECHILD_HPP__
|
|
|
|
|
2016-04-11 03:59:54 +00:00
|
|
|
#include "CAnimTreeNode.hpp"
|
|
|
|
|
2016-04-10 21:22:59 +00:00
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
|
2016-04-11 03:59:54 +00:00
|
|
|
class CAnimTreeDoubleChild : public CAnimTreeNode
|
2016-04-10 21:22:59 +00:00
|
|
|
{
|
2016-04-11 03:59:54 +00:00
|
|
|
public:
|
2016-04-11 07:10:28 +00:00
|
|
|
SAdvancementResults VAdvanceView(const CCharAnimTime& a);
|
2016-04-11 03:59:54 +00:00
|
|
|
void VGetBoolPOIList(const CCharAnimTime& time, CBoolPOINode* listOut, u32, u32, u32) const;
|
|
|
|
void VGetInt32POIList(const CCharAnimTime& time, CInt32POINode* listOut, u32, u32, u32) const;
|
|
|
|
void VGetParticlePOIList(const CCharAnimTime& time, CParticlePOINode* listOut, u32, u32, u32) const;
|
|
|
|
void VGetSoundPOIList(const CCharAnimTime& time, CSoundPOINode* listOut, u32, u32, u32) const;
|
|
|
|
void VGetBoolPOIState(const char*) const;
|
|
|
|
void VGetInt32POIState(const char*) const;
|
|
|
|
void VGetParticlePOIState(const char*) const;
|
|
|
|
void VSetPhase(float);
|
|
|
|
SAdvancementResults VGetAdvancementResults(const CCharAnimTime& a, const CCharAnimTime& b) const;
|
|
|
|
void Depth() const;
|
|
|
|
void VGetContributionOfHighestInfluence() const;
|
|
|
|
void VGetNumChildren() const;
|
|
|
|
void VGetBestUnblendedChild() const;
|
2016-04-10 21:22:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __PSHAG_CANIMTREEDOUBLECHILD_HPP__
|