Skip to content

Commit

Permalink
Add new benchmark Entries
Browse files Browse the repository at this point in the history
MaxLastBreath committed Aug 18, 2024
1 parent e160aec commit 2508060
Showing 3 changed files with 16 additions and 0 deletions.
Binary file added src/GUI/benchmark_depths.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/GUI/benchmark_zora.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions src/modules/image_paths.py
Original file line number Diff line number Diff line change
@@ -8,23 +8,37 @@ def Load_ImagePath(self):
image_path="benchmark_korok.png",
width=int(100 * m), height=int(40 * m),
)

self.image_Lookout = self.on_canvas.Photo_Image(
image_path="benchmark_lookout.png",
width=int(100 * m), height=int(40 * m),
)

self.image_Kakariko = self.on_canvas.Photo_Image(
image_path="benchmark_kakariko.png",
width=int(100 * m), height=int(40 * m),
)

self.image_GSI = self.on_canvas.Photo_Image(
image_path="benchmark_great_sky_island.png",
width=int(100 * m), height=int(40 * m),
)

self.image_Goron = self.on_canvas.Photo_Image(
image_path="benchmark_goron.png",
width=int(100 * m), height=int(40 * m),
)

self.image_Zora = self.on_canvas.Photo_Image(
image_path="benchmark_zora.png",
width=int(100 * m), height=int(40 * m),
)

self.image_Depths = self.on_canvas.Photo_Image(
image_path="benchmark_depths.png",
width=int(100 * m), height=int(40 * m),
)

self.default_benchmark = self.on_canvas.Photo_Image(
image_path="benchmarks_first.png",
width=int(100 * m), height=int(40 * m),
@@ -36,6 +50,8 @@ def Load_ImagePath(self):
"Kakariko": self.image_Kakariko,
"Great Sky Island": self.image_GSI,
"Goron City": self.image_Goron,
"Depths" : self.image_Depths,
"Zora Domain": self.image_Zora,
}

# Loading Icons

0 comments on commit 2508060

Please sign in to comment.