Beispiel #1
0
 public void Show()
 {
     state = ElementState.Showing;
     OutAnimation?.Reset();
     SaveProperties();
     InAnimation?.Play(false);
     InAnimation?.Apply(ref props);
 }
Beispiel #2
0
 public void Reset()
 {
     state = ElementState.Idle;
     InAnimation?.Reset();
     OutAnimation?.Reset();
     InAnimation?.Apply(ref props);
     OutAnimation?.Apply(ref props);
     SaveProperties();
 }