impr: Display background scripts in about page

This commit is contained in:
WerWolv
2024-05-08 22:30:53 +02:00
parent 89f360d1a7
commit 8a3739ee1c
5 changed files with 35 additions and 13 deletions

View File

@@ -262,13 +262,15 @@ namespace hex::script::loader {
continue;
if (m_methodExists("Main", scriptPath)) {
this->addScript(entry.path().stem().string(), [this, scriptPath] {
this->addScript(entry.path().stem().string(), false, [this, scriptPath] {
hex::unused(m_runMethod("Main", false, scriptPath));
});
}
if (m_methodExists("OnLoad", scriptPath)) {
hex::unused(m_runMethod("OnLoad", true, scriptPath));
this->addScript(entry.path().stem().string(), true, [this, scriptPath] {
hex::unused(m_runMethod("OnLoad", true, scriptPath));
});
}
}
}