We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ddd591a + 8c8c54e commit 5c09f62Copy full SHA for 5c09f62
src/vsg/animation/AnimationManager.cpp
@@ -28,10 +28,10 @@ bool AnimationManager::play(vsg::ref_ptr<vsg::Animation> animation)
28
{
29
CPU_INSTRUMENTATION_L1_NC(instrumentation, "AnimationManager play animation", COLOR_VIEWER);
30
31
- bool already_actrive = animation->active();
+ bool already_active = animation->active();
32
if (animation->start(_simulationTime))
33
34
- if (!already_actrive) animations.push_back(animation);
+ if (!already_active) animations.push_back(animation);
35
36
return true;
37
}
0 commit comments