Transitioning from One-Shot to Looped Sounds in Atom Craft

Introduction

ADX2 offers many solutions to help solve our creative and technical problems. One problem we might want to address is that of a quickly repeating sound. Do we want to repeatedly playback a one-shot sound, or do we want to transition into a loop? Retriggering a one-shot sound does mean that changes to playback rate will be reflected synchronously, but it also means that we might eat up our voice count. Transitioning into a loop may mean that we’ll need to edit it in future, but this could significantly reduce our voice count (which is especially important when developing for mobile).

This month’s blog will look at setting up a minigun-style firing effect that increases in playback rate over time, culminating in a continuous, single-voice loop.

This project was created using CRI Atom Craft Ver.3.41.04

Designing the Sound

To save time in future editing, we can snap our individual shots to a timeline grid, and simply adjust our tempo based on gameplay design changes. In Reaper, for example, we can navigate to File Project Settings, and set our Timebase for items to Beats (position only). This will prevent automatic re-pitching of our items, but it still will keep everything on the timeline grid when we change the tempo.

20200128_from One-Shot to Looped-1

Atom Craft

The gameplay logic for our weapon sound will likely be controlled from within the game engine, but we can prototype some behaviour from within Atom Craft.

  • First, we need to create our one-shot Cue and our loop Cue. We can use a Random Cue for our one-shot and load it with variations of the same sound. For our loop, we can simply use a Polyphonic Cue.
  • Then, we need another Polyphonic Cue for prototyping playback.
  • Finally, we can drag in our one-shot Cues, layering them so that the playback rate increases over time, eventually triggering our loop.
  • If we want to test stopping our sound, we can add a Stop Action on an Action Track linked to our loop and trigger a one-shot sound to act as a release sample.

20200128_from One-Shot to Looped-2

We can sell this system further by using an Auto Modulation AISAC set to control Pitch. This might smear the transient sound of gunfire, but it can be used to great effect if a motor sound is layered in underneath.

20200128_from One-Shot to Looped-3

If our one-shot sounds are relatively short, we can also help keep the voice count low using a Voice Limit Group.

20200128_from One-Shot to Looped-4

The logic needed to implement the above prototype within our game engine is slightly more complicated, as it is will require collaboration between gameplay design and audio design/implementation departments. The important thing to note is that we will need to design for whether the player is holding down the trigger, and whether we are in the high-intensity loop phase. Our low-intensity phase is simple to deal with, but since the loop is made up of a single piece of continuous audio, we will need to play a final one-shot Cue when the trigger is released (to allow for a full release tail to play out).

Leave a Reply

Your email address will not be published. Required fields are marked *