Beispiel #1
0
 public FadeOut()
 {
     Property = "Alpha";
     Duration = 1f;
     Easer = Linear.EaseNone;
     //StartValue = 1f;
     StartValueReader = new PropertyReader("Alpha");
     EndValue = 0f;
 }
 public LockAlertRemovedAnimation()
 {
     Property = "Alpha";
     Duration = 1f;
     Easer = Linear.EaseNone;
     //StartValue = 1f;
     StartValueReader = new PropertyReader("Alpha");
     EndValue = 0f;
 }
Beispiel #3
0
 /// <summary>
 /// Creates a new object that is a copy of the current instance.
 /// </summary>
 /// <returns>
 /// A new object that is a copy of this instance.
 /// </returns>
 /// <filterpriority>2</filterpriority>
 public object Clone()
 {
     PropertyReader propertyReader = new PropertyReader(Target, Property);
     return propertyReader;
 }