2017-12-29 08:08:12 +00:00
|
|
|
#include "CSKR.hpp"
|
|
|
|
#include "hecl/Blender/Connection.hpp"
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace DataSpec::DNAMP1 {
|
2017-12-29 08:08:12 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CSKR::weightVertex(hecl::blender::PyOutStream& os, const CINF& cinf, atUint32 idx) const {
|
|
|
|
atUint32 accum = 0;
|
|
|
|
for (const SkinningRule& rule : skinningRules) {
|
|
|
|
if (idx >= accum && idx < accum + rule.vertCount)
|
|
|
|
for (const SkinningRule::Weight& weight : rule.weights)
|
2019-07-20 04:27:21 +00:00
|
|
|
os.format(fmt("vert[dvert_lay][{}] = {}\n"), cinf.getBoneIdxFromId(weight.boneId), weight.weight);
|
2018-12-08 05:30:43 +00:00
|
|
|
accum += rule.vertCount;
|
|
|
|
}
|
2017-12-29 08:08:12 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace DataSpec::DNAMP1
|