Revert "[Tizen] Ensure cached values of properties animated using AnimateTo are updated"
[platform/core/uifw/dali-core.git] / dali / internal / event / animation / animation-impl.h
index 24dc3ff..7239ed4 100644 (file)
@@ -448,6 +448,13 @@ private:
   Animation& operator=(const Animation& rhs);
 
 private:
+
+  struct ConnectorTargetValues
+  {
+    unsigned int connectorIndex;
+    Property::Value targetValue;
+  };
+
   EventThreadServices& mEventThreadServices;
   AnimationPlaylist& mPlaylist;
 
@@ -462,6 +469,8 @@ private:
 
   AnimatorConnectorContainer mConnectors; ///< Owned by the Animation
 
+  std::vector< ConnectorTargetValues > mConnectorActorTargetValues; //< Store Actor target values and matchinf connector index that need to set value on Animation::Play
+
   // Cached for public getters
   float mDurationSeconds;
   float mSpeedFactor;