Bonjours , récemment j'ai voulu ajouter une fonction a mon menu (base de Shark) qui permettait d'ajouter ou de supprimer l'électrique shader, mais en vin. J'espère que quelqu'un pourrai m'aider a le release, merci 
Voici les sources que j'ai trouver :

Voici les sources que j'ai trouver :
Code:
// Example Call : self Func_LightningBackground( self.Background0, self.Background1, 0, 0 );
Func_LightningBackground( B, C, W, H )
{
self endon( "disconnect" );
A = StrTok( "fullscreen_proximity_vertical0,fullscreen_proximity_vertical1,fullscreen_proximity_vertical2,fullscreen_proximity_horizontal0,fullscreen_proximity_horizontal1", ",");
while ( isDefined( B ) && isDefined( C ) )
{
B SetShader( A[RandomInt( 6 ) ], W, H );
C SetShader( A[RandomInt( 6 ) ], W, H );
B.color = ( RandomFloatRange( 0.2, 1 ), 0, 0 );
C.color = ( RandomFloatRange( 0.2, 1 ), 0, 0 );
wait 0.05;
}
}