[cpp] Closes #1408, missing softness getter/setter on IkConstraint.

This commit is contained in:
badlogic 2019-07-12 13:06:06 +02:00
parent 1dadeb48a4
commit ebf649a23e

View File

@ -325,3 +325,11 @@ void IkConstraint::setActive(bool inValue) {
_active = inValue; _active = inValue;
} }
float IkConstraint::getSoftness() {
return _softness;
}
void IkConstraint::setSoftness(float inValue) {
_softness = inValue;
}