20 lines
338 B
TypeScript
20 lines
338 B
TypeScript
|
|
function tab_particles_draw(htab: ui_handle_t) {
|
|
if (ui_tab(htab, tr("Particles"))) {
|
|
// if (ui_tab(htab, tr("Prompt"))) {
|
|
ui_begin_sticky();
|
|
let row: f32[] = [1 / 4, 1 / 4, 1 / 4];
|
|
ui_row(row);
|
|
if (ui_button(tr("New"))) {
|
|
|
|
}
|
|
if (ui_button(tr("Import"))) {
|
|
|
|
}
|
|
if (ui_button(tr("Nodes"))) {
|
|
|
|
}
|
|
ui_end_sticky();
|
|
}
|
|
}
|