public void GetTotalDurationTest() { var animation = new AnimationClip <float> { Animation = new SingleFromToByAnimation { From = 100, To = 200, Duration = TimeSpan.FromSeconds(6.0), }, Delay = TimeSpan.FromSeconds(10), Speed = 2, FillBehavior = FillBehavior.Hold, }; var animation2 = new AnimationClip <float> { Animation = new SingleFromToByAnimation { From = 10, To = 20, Duration = TimeSpan.FromSeconds(5.0), }, Delay = TimeSpan.Zero, Speed = 1, FillBehavior = FillBehavior.Hold, }; var animationEx = new Vector3Animation(); Assert.AreEqual(TimeSpan.FromSeconds(0.0), animationEx.GetTotalDuration()); animationEx = new Vector3Animation(); animationEx.X = animation; Assert.AreEqual(TimeSpan.FromSeconds(13.0), animationEx.GetTotalDuration()); animationEx = new Vector3Animation(); animationEx.Y = animation; Assert.AreEqual(TimeSpan.FromSeconds(13.0), animationEx.GetTotalDuration()); animationEx = new Vector3Animation(); animationEx.Z = animation; Assert.AreEqual(TimeSpan.FromSeconds(13.0), animationEx.GetTotalDuration()); animationEx = new Vector3Animation(); animationEx.X = animation; animationEx.Y = animation2; Assert.AreEqual(TimeSpan.FromSeconds(13.0), animationEx.GetTotalDuration()); animationEx = new Vector3Animation(); animationEx.Y = animation2; animationEx.Z = animation; Assert.AreEqual(TimeSpan.FromSeconds(13.0), animationEx.GetTotalDuration()); }
public void GetValueTest() { var animation = new AnimationClip <float> { Animation = new SingleFromToByAnimation { From = 100, To = 200, }, Delay = TimeSpan.FromSeconds(10), Duration = TimeSpan.FromSeconds(6.0), Speed = 2, FillBehavior = FillBehavior.Hold, }; var animation2 = new AnimationClip <float> { Animation = new SingleFromToByAnimation { From = 10, To = 20, Duration = TimeSpan.FromSeconds(5.0), }, Delay = TimeSpan.Zero, Speed = 1, FillBehavior = FillBehavior.Hold, }; var animation3 = new AnimationClip <float> { Animation = new SingleFromToByAnimation { From = 5, To = -5, Duration = TimeSpan.FromSeconds(10), }, Delay = TimeSpan.FromSeconds(5), Speed = 1, FillBehavior = FillBehavior.Hold, }; var animationEx = new Vector3Animation { X = animation, Y = animation2, Z = animation3, }; var defaultSource = new Vector3(1, 2, 3); var defaultTarget = new Vector3(5, 6, 7); var result = animationEx.GetValue(TimeSpan.FromSeconds(0.0), defaultSource, defaultTarget); Assert.AreEqual(defaultSource.X, result.X); // animation has not started. Assert.AreEqual(10.0f, result.Y); // animation2 has started. Assert.AreEqual(defaultSource.Z, result.Z); // animation3 has not started. result = animationEx.GetValue(TimeSpan.FromSeconds(5.0), defaultSource, defaultTarget); Assert.AreEqual(defaultSource.X, result.X); // animation has not started. Assert.AreEqual(20.0f, result.Y); // animation2 has ended. Assert.AreEqual(5, result.Z); // animation3 has started. result = animationEx.GetValue(TimeSpan.FromSeconds(5.0), defaultSource, defaultTarget); Assert.AreEqual(defaultSource.X, result.X); // animation has not started. Assert.AreEqual(20.0f, result.Y); // animation2 has ended. Assert.AreEqual(5, result.Z); // animation3 has started. result = animationEx.GetValue(TimeSpan.FromSeconds(13.0), defaultSource, defaultTarget); Assert.AreEqual(200, result.X); // animation has ended. Assert.AreEqual(20.0f, result.Y); // animation2 is filling. Assert.AreEqual(-3, result.Z); // animation3 is active. }
public void TraitsTest() { var animationEx = new Vector3Animation(); Assert.AreEqual(Vector3Traits.Instance, animationEx.Traits); }
public void ApplyVector3ToText(Text text) { Vector3Animation vector3Animation = ((Vector3Animation)simpleAnimationsManager.GetAnimation("Vector3")); text.text = vector3Animation.vector3ToAnimate.ToString(); }