[Tizen] Set KeyFrame's frame value
[platform/core/uifw/dali-core.git] / dali / devel-api / animation / key-frames-devel.cpp
index ebf3787..37ec9a1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2021 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2023 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -33,6 +33,11 @@ void GetKeyFrame(KeyFrames keyFrames, std::size_t index, float& time, Property::
   GetImplementation(keyFrames).GetKeyFrame(index, time, value);
 }
 
+void SetKeyFrameValue(KeyFrames keyFrames, std::size_t index, const Property::Value& value)
+{
+  GetImplementation(keyFrames).SetKeyFrameValue(index, value);
+}
+
 } // namespace DevelKeyFrames
 
 } // namespace Dali