Ejemplo n.º 1
0
 public static LTransition NewPShadow(PShadowEffect effect)
 {
     if (GLEx.Self != null)
     {
         LTransition transition = new LTransition();
         transition.SetTransitionListener(new _PShadow(effect));
         transition.SetDisplayGameUI(true);
         transition.code = 1;
         return transition;
     }
     return null;
 }
Ejemplo n.º 2
0
 public static LTransition NewPShadow(string fileName, float alhpa)
 {
     PShadowEffect shadow = new PShadowEffect(fileName);
     shadow.SetAlpha(alhpa);
     return NewPShadow(shadow);
 }
Ejemplo n.º 3
0
 public PixelThread(PShadowEffect effect)
 {
     this.ps = effect;
 }
Ejemplo n.º 4
0
 public _PShadow(PShadowEffect e)
 {
     effect = e;
 }
Ejemplo n.º 5
0
 public PixelThread(PShadowEffect effect)
 {
     this.ps = effect;
 }