add song select, results, config, and asio support

This commit is contained in:
Yonokid
2025-04-21 02:14:21 -04:00
parent 8985be1145
commit 0012868d4e
13 changed files with 1612 additions and 676 deletions

18
scenes/entry.py Normal file
View File

@@ -0,0 +1,18 @@
import pyray as ray
from libs.utils import load_texture_from_zip
class EntryScreen:
def __init__(self, width, height):
self.width = width
self.height = height
self.texture_footer = load_texture_from_zip('Graphics\\lumendata\\entry.zip', 'entry_img00375.png')
def update(self):
if ray.is_key_pressed(ray.KeyboardKey.KEY_ENTER):
return "SONG_SELECT"
def draw(self):
ray.draw_texture(self.texture_footer, 0, self.height - 151, ray.WHITE)