From e34d928d56debcb6dbdc4f16335ece59209b5e27 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Sun, 29 Mar 2020 18:44:08 -0700 Subject: modules/sparkler: add particles conf parameter Just stubbed out for now, wanting to restore some octree overlays like the old standalone sparkler had. Those can be wired up to settings so rtv can occasionally show the spatial partition and matched particles. --- src/modules/sparkler/particles.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/modules/sparkler/particles.h') diff --git a/src/modules/sparkler/particles.h b/src/modules/sparkler/particles.h index 689934b..b191b6e 100644 --- a/src/modules/sparkler/particles.h +++ b/src/modules/sparkler/particles.h @@ -6,9 +6,14 @@ #include "list.h" #include "particle.h" +typedef struct particles_conf_t { + unsigned show_bsp_leafs:1; + unsigned show_bsp_matches:1; +} particles_conf_t; + typedef struct particles_t particles_t; -particles_t * particles_new(void); +particles_t * particles_new(const particles_conf_t *conf); void particles_draw(particles_t *particles, fb_fragment_t *fragment); particle_status_t particles_sim(particles_t *particles); void particles_age(particles_t *particles); -- cgit v1.2.1