コード例 #1
0
ファイル: FadeOut.cs プロジェクト: groov0v/edriven-gui
 public FadeOut()
 {
     Property = "Alpha";
     Duration = 1f;
     Easer = Linear.EaseNone;
     //StartValue = 1f;
     StartValueReader = new PropertyReader("Alpha");
     EndValue = 0f;
 }
コード例 #2
0
 public LockAlertRemovedAnimation()
 {
     Property = "Alpha";
     Duration = 1f;
     Easer = Linear.EaseNone;
     //StartValue = 1f;
     StartValueReader = new PropertyReader("Alpha");
     EndValue = 0f;
 }
コード例 #3
0
ファイル: PropertyReader.cs プロジェクト: groov0v/edriven-gui
 /// <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;
 }