Merge minits

This commit is contained in:
luboslenco
2024-05-03 21:29:39 +02:00
parent 39bd1cdfe0
commit d2eb902125
87 changed files with 2524 additions and 1786 deletions
+4 -1
View File
@@ -8,7 +8,10 @@ function export_gpl_run(path: string, name: string, swatches: swatch_color_t[])
for (let i: i32 = 0; i < swatches.length; ++i) {
let swatch: swatch_color_t = swatches[i];
o += any_to_string(color_get_rb(swatch.base)) + " " + any_to_string(color_get_gb(swatch.base)) + " " + any_to_string(color_get_bb(swatch.base)) + "\n";
let rb: i32 = color_get_rb(swatch.base);
let gb: i32 = color_get_gb(swatch.base);
let bb: i32 = color_get_bb(swatch.base);
o += rb + " " + gb + " " + bb + "\n";
}
krom_file_save_bytes(path, sys_string_to_buffer(o), o.length);