Exemplo n.º 1
0
 private static void LerpFade_LerpDone(object sender, LerpArgs e)
 {
     if (__shouldClose)
     {
         _WFade.Close();
     }
     else
     {
         _WFade.Opacity = 1; _WFade.Hide();
     }
 }
Exemplo n.º 2
0
 private static void SINGLE_LerpFade_LerpDone(object sender, LerpArgs e)
 {
     HWND.Opacity = 0;
     if (_shouldClose)
     {
         HWND.Close();
     }
     else
     {
         HWND.Hide(); HWND.Opacity = 1;
     }
 }
Exemplo n.º 3
0
 private static void LerpFade_LerpTick(object sender, LerpArgs e)
 {
     _WFade.Opacity = e.valueExact;
 }
Exemplo n.º 4
0
 private static void LerpFade_LerpStart(object sender, LerpArgs e)
 {
     _WFade.Opacity = 1;
 }
Exemplo n.º 5
0
 private static void LerpShow_LerpDone(object sender, LerpArgs e)
 {
     _WShow.Opacity = 1;
 }
Exemplo n.º 6
0
 private static void LerpShow_LerpTick(object sender, LerpArgs e)
 {
     _WShow.Opacity = e.valueExact;
 }
Exemplo n.º 7
0
 private static void LerpShow_LerpStart(object sender, LerpArgs e)
 {
     _WShow.Opacity = 0;
     _WShow.Show();
 }
Exemplo n.º 8
0
 private static void SINGLE_LerpFade_LerpTick(object sender, LerpArgs e)
 {
     HWND.Opacity = e.valueExact;
 }
Exemplo n.º 9
0
 private static void SINGLE_LerpFade_LerpStart(object sender, LerpArgs e)
 {
     HWND.Opacity = 1;
 }
Exemplo n.º 10
0
 private static void SINGLE_LerpShow_LerpDone(object sender, LerpArgs e)
 {
     HWND.Opacity = 1;
 }
Exemplo n.º 11
0
 private static void SINGLE_LerpShow_LerpStart(object sender, LerpArgs e)
 {
     HWND.Opacity = 0;
 }
Exemplo n.º 12
0
 private void lerp3_LerpDone(object sender, LerpArgs e)
 {
     condition++;
     OnVDone();
 }
Exemplo n.º 13
0
 private void lerp3_LerpTick(object sender, LerpArgs e)
 {
     vArgs.Set(vArgs.X, vArgs.Y, vArgs.Z, e.valueExact);
     OnVTick();
 }
Exemplo n.º 14
0
 private void lerp1_LerpTick(object sender, LerpArgs e)
 {
     vArgs.Set(vArgs.X, e.valueExact, vArgs.Z, vArgs.W);
     OnVTick();
 }