tab_particles.ts 300 B

123456789101112131415161718
  1. function tab_particles_draw(htab: ui_handle_t) {
  2. if (ui_tab(htab, tr("Particles"))) {
  3. ui_begin_sticky();
  4. let row: f32[] = [1 / 4, 1 / 4, 1 / 4];
  5. ui_row(row);
  6. if (ui_button(tr("New"))) {
  7. }
  8. if (ui_button(tr("Import"))) {
  9. }
  10. if (ui_button(tr("Nodes"))) {
  11. }
  12. ui_end_sticky();
  13. }
  14. }