Match and link CParticlePOINode

Former-commit-id: aa37f3f471
This commit is contained in:
2023-01-11 17:44:25 -08:00
parent b38681ceff
commit b6dc1b51b7
10 changed files with 73 additions and 50 deletions

View File

@@ -0,0 +1,10 @@
#include "Kyoto/Animation/CPOINode.hpp"
CParticlePOINode::CParticlePOINode(CInputStream& in) : CPOINode(in), x38_data(in) {}
CParticlePOINode CParticlePOINode::CopyNodeMinusStartTime(const CParticlePOINode& node,
const CCharAnimTime& startTime) {
return CParticlePOINode(node.GetString(), node.GetPoiType(), node.GetTime() - startTime,
node.GetIndex(), node.GetSaveState(), node.GetWeight(),
node.GetCharacterIndex(), node.GetFlags(), node.GetParticleData());
}