mirror of
https://github.com/JonnyBro/beatrun.git
synced 2025-04-04 09:56:33 +05:00
feat: close menu after selecting a course
This commit is contained in:
parent
98ae519b1b
commit
1876c95130
1 changed files with 6 additions and 2 deletions
|
@ -59,10 +59,11 @@ function OpenCourseMenu()
|
||||||
local dirsearch = dir .. "*.txt"
|
local dirsearch = dir .. "*.txt"
|
||||||
local files = file.Find(dirsearch, "DATA", "datedesc")
|
local files = file.Find(dirsearch, "DATA", "datedesc")
|
||||||
|
|
||||||
PrintTable(files)
|
if BEATRUN_DEBUG then PrintTable(files) end
|
||||||
|
|
||||||
table.Empty(courselist.elements)
|
table.Empty(courselist.elements)
|
||||||
|
|
||||||
for k, v in pairs(files) do
|
for _, v in pairs(files) do
|
||||||
local data = file.Read(dir .. v, "DATA")
|
local data = file.Read(dir .. v, "DATA")
|
||||||
local course = util.Decompress(data) or data
|
local course = util.Decompress(data) or data
|
||||||
|
|
||||||
|
@ -75,6 +76,9 @@ function OpenCourseMenu()
|
||||||
function courseentry:onclick()
|
function courseentry:onclick()
|
||||||
LocalPlayer():EmitSound("buttonclick.wav")
|
LocalPlayer():EmitSound("buttonclick.wav")
|
||||||
LoadCourse(filename)
|
LoadCourse(filename)
|
||||||
|
|
||||||
|
AEUI:RemovePanel(courselist)
|
||||||
|
AEUI:RemovePanel(coursepanel)
|
||||||
end
|
end
|
||||||
|
|
||||||
courseentry.greyed = sacheck
|
courseentry.greyed = sacheck
|
||||||
|
|
Loading…
Add table
Reference in a new issue