This is an automated email from the ASF dual-hosted git repository.

yishayw pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new cd8b1598fb Get some mx tween functonality in
cd8b1598fb is described below

commit cd8b1598fbdf35e603f0887914ebe16eae986902
Author: Yishay Weiss <[email protected]>
AuthorDate: Tue May 10 10:43:30 2022 +0300

    Get some mx tween functonality in
---
 frameworks/projects/MXRoyale/src/main/royale/mx/effects/Tween.as | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/effects/Tween.as 
b/frameworks/projects/MXRoyale/src/main/royale/mx/effects/Tween.as
index 2a1c166f38..ea3a01188e 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/effects/Tween.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/effects/Tween.as
@@ -68,6 +68,10 @@ public class Tween extends org.apache.royale.effects.Tween
                           endFunction:Function = null)
     {
                super();
+    this.listener = listener;
+    this.startValue = Number(startValue);
+    this.endValue = Number(endValue);
+    this.duration = duration;
     }
 
    

Reply via email to