From: dooglus Date: Wed, 26 Dec 2007 16:36:18 +0000 (+0000) Subject: Change the default sub-parameters for the Time Loop convert so that the first second... X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=22d9c8d51351551970a55ef0b175be034c839880;p=synfig.git Change the default sub-parameters for the Time Loop convert so that the first second (from 0s to 1s) is repeated over and over. git-svn-id: http://svn.voria.com/code@1229 1f10aa63-cdf2-0310-b900-c93c546f37ac --- diff --git a/synfig-core/trunk/src/synfig/valuenode_timeloop.cpp b/synfig-core/trunk/src/synfig/valuenode_timeloop.cpp index 3ad2b8f..8ed0fad 100644 --- a/synfig-core/trunk/src/synfig/valuenode_timeloop.cpp +++ b/synfig-core/trunk/src/synfig/valuenode_timeloop.cpp @@ -60,8 +60,8 @@ ValueNode_TimeLoop::ValueNode_TimeLoop(const ValueNode::Handle &x): { set_link("link", x); set_link("link_time", ValueNode_Const::create(Time(0))); - set_link("local_time", ValueNode_Const::create(Time(1))); - set_link("duration", ValueNode_Const::create(Time(0))); + set_link("local_time", ValueNode_Const::create(Time(0))); + set_link("duration", ValueNode_Const::create(Time(1))); } ValueNode_TimeLoop*