From 8a14c833c42c9eb90d9f05bedac99863b9b17b4e Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Thu, 10 Mar 2022 00:57:51 -0500 Subject: we need a consistent bass line --- src/drone.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src') diff --git a/src/drone.c b/src/drone.c index e42a974..a4ea1cb 100644 --- a/src/drone.c +++ b/src/drone.c @@ -120,6 +120,16 @@ xas_drone_chamber *xas_drone_chamber_new(xas_spatial_scene *scene, goto error_malloc_chamber_drones; } + if ((chamber->synth_bass = xas_spatial_scene_add_synth(scene, + (xas_spatial_coord){ + location.x, + location.y, + location.z + 5.0 + }, + XAS_SYNTH_SQUARE)) == NULL) { + goto error_spatial_scene_add_synth; + } + if ((chamber->synth_l = xas_spatial_scene_add_synth(scene, (xas_spatial_coord){ location.x - 5.0, -- cgit v1.2.3