BGE: A better fix for using the Action Actuator with the Actuator Sensor. This one still allows frame properties to be updated after receiving a negative pulse. This also fixes bug [#32179] "Action Actuator in Loop End stops updating the Frame Property after no longer receives positive signal" reported by Dalai.

This commit is contained in:
Mitchell Stokes 2012-07-25 04:29:48 +00:00
parent 99947eb744
commit 8f1666ee56

@ -339,7 +339,7 @@ bool BL_ActionActuator::Update(double curtime, bool frame)
}
}
return m_flag & ACT_FLAG_ATTEMPT_PLAY;
return m_flag & ACT_FLAG_ACTIVE;
}
#ifdef WITH_PYTHON