diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/drone.c | 10 |
1 files changed, 10 insertions, 0 deletions
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, |