Files
armorpaint/base/sources/ts/tab_particles.ts
T
luboslenco 3a4aff203f Merge forge
2025-08-07 19:43:11 +02:00

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();
}
}