3#include "pixelbullet/serialization/node.h"
11 std::vector<float> weights;
16 return lhs.weights == rhs.weights;
19inline bool operator!=(
const MorphWeightsComponent& lhs,
const MorphWeightsComponent& rhs)
26 node[
"weights"] << component.weights;
32 if (node.HasProperty(
"weights"))
34 node[
"weights"] >> component.weights;
38 component.weights.clear();
Represents a hierarchical node capable of storing various data types and supporting YAML serializatio...
Definition node.h:45
Definition morph_weights_component.h:10