From f178fc789c089465ce67cdfd3b2e68c119b7bb23 Mon Sep 17 00:00:00 2001 From: Brad Hefta-Gaub Date: Tue, 26 Jan 2016 18:44:34 -0800 Subject: [PATCH] fix for animations stopping after domain restart --- libraries/animation/src/AnimationLoop.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/animation/src/AnimationLoop.cpp b/libraries/animation/src/AnimationLoop.cpp index 1e04af5dfa..f6a2877966 100644 --- a/libraries/animation/src/AnimationLoop.cpp +++ b/libraries/animation/src/AnimationLoop.cpp @@ -18,7 +18,7 @@ const float AnimationLoop::MAXIMUM_POSSIBLE_FRAME = 100000.0f; AnimationLoop::AnimationLoop() : _fps(30.0f), - _loop(false), + _loop(true), _hold(false), _startAutomatically(false), _firstFrame(0.0f),