2024-03-14 15:31:22 +01:00
|
|
|
|
2024-09-03 15:52:05 +02:00
|
|
|
function tab_particles_draw(htab: ui_handle_t) {
|
|
|
|
|
if (ui_tab(htab, tr("Particles"))) {
|
2025-08-07 19:43:11 +02:00
|
|
|
// if (ui_tab(htab, tr("Prompt"))) {
|
2024-09-03 15:52:05 +02:00
|
|
|
ui_begin_sticky();
|
2024-04-25 22:04:43 +02:00
|
|
|
let row: f32[] = [1 / 4, 1 / 4, 1 / 4];
|
2024-09-03 15:52:05 +02:00
|
|
|
ui_row(row);
|
|
|
|
|
if (ui_button(tr("New"))) {
|
2024-03-20 16:13:54 +01:00
|
|
|
|
|
|
|
|
}
|
2024-09-03 15:52:05 +02:00
|
|
|
if (ui_button(tr("Import"))) {
|
2024-03-20 16:13:54 +01:00
|
|
|
|
|
|
|
|
}
|
2024-09-03 15:52:05 +02:00
|
|
|
if (ui_button(tr("Nodes"))) {
|
2024-03-20 16:13:54 +01:00
|
|
|
|
|
|
|
|
}
|
2024-09-03 15:52:05 +02:00
|
|
|
ui_end_sticky();
|
2024-03-14 15:31:22 +01:00
|
|
|
}
|
|
|
|
|
}
|