Files
armorpaint/base/sources/ts/tab_particles.ts
T
luboslenco 47bc985b42 Cleanup
2025-02-26 08:47:09 +01:00

19 lines
300 B
TypeScript

function tab_particles_draw(htab: ui_handle_t) {
if (ui_tab(htab, tr("Particles"))) {
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();
}
}