Skip to content

Commit 763be12

Browse files
authored
Convert all stages of platformer tutorial to 720p (#2182)
1 parent 38333a4 commit 763be12

20 files changed

+40
-40
lines changed

arcade/examples/platform_tutorial/01_open_window.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
import arcade
77

88
# Constants
9-
SCREEN_WIDTH = 800
10-
SCREEN_HEIGHT = 600
9+
SCREEN_WIDTH = 1280
10+
SCREEN_HEIGHT = 720
1111
SCREEN_TITLE = "Platformer"
1212

1313

arcade/examples/platform_tutorial/02_draw_sprites.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
import arcade
77

88
# Constants
9-
SCREEN_WIDTH = 800
10-
SCREEN_HEIGHT = 600
9+
SCREEN_WIDTH = 1280
10+
SCREEN_HEIGHT = 720
1111
SCREEN_TITLE = "Platformer"
1212

1313

arcade/examples/platform_tutorial/03_more_sprites.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
import arcade
77

88
# Constants
9-
SCREEN_WIDTH = 800
10-
SCREEN_HEIGHT = 600
9+
SCREEN_WIDTH = 1280
10+
SCREEN_HEIGHT = 720
1111
SCREEN_TITLE = "Platformer"
1212

1313
# Constants used to scale our sprites from their original size

arcade/examples/platform_tutorial/04_user_control.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
import arcade
77

88
# Constants
9-
SCREEN_WIDTH = 800
10-
SCREEN_HEIGHT = 600
9+
SCREEN_WIDTH = 1280
10+
SCREEN_HEIGHT = 720
1111
SCREEN_TITLE = "Platformer"
1212

1313
# Constants used to scale our sprites from their original size

arcade/examples/platform_tutorial/05_add_gravity.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
import arcade
77

88
# Constants
9-
SCREEN_WIDTH = 800
10-
SCREEN_HEIGHT = 600
9+
SCREEN_WIDTH = 1280
10+
SCREEN_HEIGHT = 720
1111
SCREEN_TITLE = "Platformer"
1212

1313
# Constants used to scale our sprites from their original size

arcade/examples/platform_tutorial/06_reset.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
import arcade
77

88
# Constants
9-
SCREEN_WIDTH = 800
10-
SCREEN_HEIGHT = 600
9+
SCREEN_WIDTH = 1280
10+
SCREEN_HEIGHT = 720
1111
SCREEN_TITLE = "Platformer"
1212

1313
# Constants used to scale our sprites from their original size

arcade/examples/platform_tutorial/07_camera.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
import arcade
77

88
# Constants
9-
SCREEN_WIDTH = 800
10-
SCREEN_HEIGHT = 600
9+
SCREEN_WIDTH = 1280
10+
SCREEN_HEIGHT = 720
1111
SCREEN_TITLE = "Platformer"
1212

1313
# Constants used to scale our sprites from their original size

arcade/examples/platform_tutorial/08_coins.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
import arcade
77

88
# Constants
9-
SCREEN_WIDTH = 800
10-
SCREEN_HEIGHT = 600
9+
SCREEN_WIDTH = 1280
10+
SCREEN_HEIGHT = 720
1111
SCREEN_TITLE = "Platformer"
1212

1313
# Constants used to scale our sprites from their original size

arcade/examples/platform_tutorial/09_sound.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
import arcade
77

88
# Constants
9-
SCREEN_WIDTH = 800
10-
SCREEN_HEIGHT = 600
9+
SCREEN_WIDTH = 1280
10+
SCREEN_HEIGHT = 720
1111
SCREEN_TITLE = "Platformer"
1212

1313
# Constants used to scale our sprites from their original size

arcade/examples/platform_tutorial/10_score.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
import arcade
77

88
# Constants
9-
SCREEN_WIDTH = 800
10-
SCREEN_HEIGHT = 600
9+
SCREEN_WIDTH = 1280
10+
SCREEN_HEIGHT = 720
1111
SCREEN_TITLE = "Platformer"
1212

1313
# Constants used to scale our sprites from their original size

0 commit comments

Comments
 (0)