mirror of https://github.com/PrimeDecomp/prime.git
parent
a5bab3c588
commit
06c2dec94d
|
@ -68,7 +68,7 @@ void CScriptActorRotate::RebuildSpiderBallWaypoints(CStateManager& mgr) {
|
|||
CScriptSpiderBallWaypoint* wp = static_cast< CScriptSpiderBallWaypoint* >(mgr.ObjectById(*it));
|
||||
if (wp) {
|
||||
wp->BuildWaypointListAndBounds(mgr);
|
||||
wp->SetTransformDirty(false);
|
||||
wp->SetTransformDirty(true);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -76,7 +76,10 @@ void CScriptActorRotate::RebuildSpiderBallWaypoints(CStateManager& mgr) {
|
|||
}
|
||||
|
||||
void CScriptActorRotate::Think(float dt, CStateManager& mgr) {
|
||||
if (x58_24_updateRotation && GetActive()) {
|
||||
if (!x58_24_updateRotation || !GetActive()) {
|
||||
return;
|
||||
}
|
||||
|
||||
x44_currentTime += dt;
|
||||
if (x44_currentTime >= x40_maxTime) {
|
||||
x58_24_updateRotation = false;
|
||||
|
@ -111,7 +114,6 @@ void CScriptActorRotate::Think(float dt, CStateManager& mgr) {
|
|||
UpdateActors(false, mgr);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void CScriptActorRotate::UpdateActors(bool next, CStateManager& mgr) {
|
||||
|
@ -144,7 +146,11 @@ void CScriptActorRotate::UpdateActors(bool next, CStateManager& mgr) {
|
|||
|
||||
if (!x48_actors.empty()) {
|
||||
x58_24_updateRotation = true;
|
||||
x44_currentTime = (next ? x40_maxTime : 0.f);
|
||||
if (next) {
|
||||
x44_currentTime = x40_maxTime;
|
||||
} else {
|
||||
x44_currentTime = 0.f;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue