Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-08-11 11:21:27 +08:00
parent e7f27e4913
commit 95f1d1485d
26 changed files with 168 additions and 233 deletions

View File

@@ -70,10 +70,7 @@ class Utils {
String baseDirectory,
List<String> shaders,
) {
List<String> absolutePaths = shaders.map((shader) {
return path.join(baseDirectory, shader);
}).toList();
return absolutePaths.join(':');
return shaders.map((shader) => path.join(baseDirectory, shader)).join(':');
}
static final numericRegex = RegExp(r'^[\d\.]+$');