You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			27 lines
		
	
	
		
			752 B
		
	
	
	
		
			Plaintext
		
	
			
		
		
	
	
			27 lines
		
	
	
		
			752 B
		
	
	
	
		
			Plaintext
		
	
## Author : Aditya Shakya (adi1090x)
 | 
						|
## Mail : adi1090x@gmail.com
 | 
						|
## Github : @adi1090x
 | 
						|
## Reddit : @adi1090x
 | 
						|
 | 
						|
# set background colors
 | 
						|
Window.SetBackgroundColor (000000);
 | 
						|
 | 
						|
# cycle through all images
 | 
						|
for (i = 0; i < 61; i++)
 | 
						|
  flyingman_image[i] = Image("progress-" + i + ".png");
 | 
						|
flyingman_sprite = Sprite();
 | 
						|
 | 
						|
# set image position
 | 
						|
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth() / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
 | 
						|
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight() / 2 - flyingman_image[0].GetHeight() / 2));
 | 
						|
 | 
						|
progress = 0;
 | 
						|
 | 
						|
fun refresh_callback ()
 | 
						|
  {
 | 
						|
    flyingman_sprite.SetImage(flyingman_image[Math.Int(progress / 2) % 61]);
 | 
						|
    progress++;
 | 
						|
  }
 | 
						|
 | 
						|
Plymouth.SetRefreshFunction (refresh_callback);
 |