Skip to content

Commit

Permalink
Add the Zandvoort track
Browse files Browse the repository at this point in the history
  • Loading branch information
Rayman committed Dec 3, 2024
1 parent 02b42d2 commit 97c4c5b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions racer/tracks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
from . import track4
from . import track5
from . import track6
from . import zandvoort

all_tracks = [
track1,
track2,
zandvoort,
track4,
track5,
track6,
Expand Down
4 changes: 2 additions & 2 deletions racer/tracks/zandvoort.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@

import pygame

name = "Zandvoort circuit"
name = "Zandvoort"
background = pygame.image.load(os.path.splitext(__file__)[0] + '.webp')
scale = 0.8
track_width = 25
lines = [
(639, 1565),
(299, 1567),
(213, 1550),
(160, 1499),
Expand Down Expand Up @@ -75,4 +74,5 @@
(1537, 1542),
(1390, 1564),
(1255, 1565),
(639, 1565),
]

0 comments on commit 97c4c5b

Please sign in to comment.