remove crufty comments

This commit is contained in:
Andrew Meadows 2016-09-16 15:23:41 -07:00
parent a58773823d
commit 91ff9722ec

View file

@ -300,7 +300,6 @@ void Rig::clearJointAnimationPriority(int index) {
void Rig::clearIKJointLimitHistory() {
if (_animNode) {
_animNode->traverse([&](AnimNode::Pointer node) {
// only report clip nodes as valid roles.
auto ikNode = std::dynamic_pointer_cast<AnimInverseKinematics>(node);
if (ikNode) {
ikNode->clearIKJointLimitHistory();
@ -313,7 +312,6 @@ void Rig::clearIKJointLimitHistory() {
void Rig::setMaxHipsOffsetLength(float maxLength) {
if (_animNode) {
_animNode->traverse([&](AnimNode::Pointer node) {
// only report clip nodes as valid roles.
auto ikNode = std::dynamic_pointer_cast<AnimInverseKinematics>(node);
if (ikNode) {
ikNode->setMaxHipsOffsetLength(maxLength);