minits progress

This commit is contained in:
luboslenco
2024-04-12 12:51:40 +02:00
parent e5d106ed6a
commit 08eb42e484
15 changed files with 40 additions and 41 deletions
+1 -1
View File
@@ -263,7 +263,7 @@ function make_material_bake_node_previews() {
}
make_material_traverse_nodes(ui_nodes_get_canvas_material().nodes, null, []);
let keys: string[] = map_keys_to_array(context_raw.node_previews);
let keys: string[] = map_keys(context_raw.node_previews);
for (let i: i32 = 0; i < keys.length; ++i) {
let key: string = keys[i];
if (array_index_of(context_raw.node_previews_used, key) == -1) {
+1 -1
View File
@@ -112,7 +112,7 @@ function tab_layers_init_layer_map(): map_t<slot_layer_t, i32> {
function tab_layers_fill_layer_map(map: map_t<slot_layer_t, i32>): map_t<i32, i32> {
let res: map_t<i32, i32> = map_create();
let keys: string[] = map_keys_to_array(map);
let keys: string[] = map_keys(map);
for (let i: i32 = 0; i < keys.length; ++i) {
let l = keys[i];
map_set(res, map_get(map, l), array_index_of(project_layers, l) > -1 ? array_index_of(project_layers, l) : 9999);