Add getters

This commit is contained in:
Phillip Stephens 2023-01-11 18:46:44 -08:00
parent a04a2267f4
commit 3c67858cda
1 changed files with 7 additions and 0 deletions

View File

@ -15,6 +15,13 @@ public:
};
CPASParmInfo(CInputStream& in);
CPASAnimInfo::EParmType GetParamterType() const { return x0_type; }
EWeightFunction GetWeightFunction() const { return x4_weightFunction; }
float GetWeight() const { return x8_weight; }
CPASAnimParm::UParmValue GetParameterMinValue() const { return xc_min; }
CPASAnimParm::UParmValue GetParameterMaxValue() const { return x10_max; }
private:
CPASAnimParm::EParmType x0_type;
EWeightFunction x4_weightFunction;