2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 15:51:22 +00:00
metaforce/Runtime/Graphics/CVertexMorphEffect.hpp
2018-10-06 17:42:33 -10:00

24 lines
456 B
C++

#pragma once
#include "CToken.hpp"
#include "Character/CPoseAsTransforms.hpp"
namespace urde
{
class CSkinRules;
class CVertexMorphEffect
{
u32 x0_ = 0;
u32 x4_ = 1;
public:
void MorphVertices(std::vector<std::pair<zeus::CVector3f, zeus::CVector3f>>& vn,
const float* magnitudes, const TLockedToken<CSkinRules>& skinRules,
const CPoseAsTransforms& pose) const;
void Update(float) {}
};
}