Changing calls to Window.GetWidth() and Window.GetHeight() to Window.GetWidth(0) and Window.GetHeight(0). This ensures consistent centering on every monitor for multimonitor setups, including those with disparate resolutions
This commit is contained in:
parent
bf2f570bee
commit
158ccfdab6
81 changed files with 486 additions and 486 deletions
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 41; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 76; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 24; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 30; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 61; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 164; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
progress = 0;
|
||||
|
||||
fun refresh_callback ()
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 68; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 101; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 48; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 72; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 156; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 96; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 375; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 89; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 120; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 120; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 210; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 81; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 62; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 41; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 24; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 201; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 160; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 115; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 375; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 26; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 40; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 94; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 25; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 33; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 38; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 125; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 40; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 16; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 100; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 119; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 32; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 130; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 205; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 75; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 90; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 20; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 40; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 125; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 119; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 48; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 540; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 100; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 19; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 105; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 50; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 87; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 64; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 100; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 60; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 163; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 151; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 120; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 240; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 392; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 53; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 220; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 270; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 75; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 15; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 400; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 400; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 323; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 45; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 36; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 169; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 60; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 65; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 45; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 173; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 138; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 90; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 166; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 192; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < 150; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
## Reddit : @adi1090x
|
||||
|
||||
// Screen size
|
||||
screen.w = Window.GetWidth();
|
||||
screen.h = Window.GetHeight();
|
||||
screen.half.w = Window.GetWidth() / 2;
|
||||
screen.half.h = Window.GetHeight() / 2;
|
||||
screen.w = Window.GetWidth(0);
|
||||
screen.h = Window.GetHeight(0);
|
||||
screen.half.w = Window.GetWidth(0) / 2;
|
||||
screen.half.h = Window.GetHeight(0) / 2;
|
||||
|
||||
// Question prompt
|
||||
question = null;
|
||||
|
@ -33,8 +33,8 @@ for (i = 0; i < NUM; i++)
|
|||
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));
|
||||
flyingman_sprite.SetX(Window.GetX() + (Window.GetWidth(0) / 2 - flyingman_image[0].GetWidth() / 2)); # Place images in the center
|
||||
flyingman_sprite.SetY(Window.GetY() + (Window.GetHeight(0) / 2 - flyingman_image[0].GetHeight() / 2));
|
||||
|
||||
progress = 0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue