Rogue Engine - Playing Sounds - In Two Minutes

11 months ago
26

Rogue Engine enables you to attach a sound to an object in the scene.

So let's make an empty object and rename it.

We are going to create a new component to start the sound playing so, create a new Component asset and call it, Object Audio.

Now double click the component to open it in your code editor.
We need to reference the Three.js library at the top of the file as we want to add a property to the component that is a Three.Audio type.

The "true" parameter in the property indicates that this will be positional audio so that the sound will seem to come from the object in 3D space.

If we save our code and go back to the Rogue editor, we can drag and drop the component onto the Audio Background object. We will now see the objectAudio property we have defined is "unset".

So lets find some audio to go into this component. You can import an mp3 file into your asset panel and then drag and drop it into the objectAudio property.

Now we can go back to our code. We can make the audio play as soon as the scene is loaded by adding the following to the Start method.

First check that the objectAudio property has been set.

Then add the objectAudio to the object3D that this component is attached to.

We can set the audio to loop if we want to, then play the audio.

Save your code and go back to the Rogue editor. Now when we play our scene, the audio will play.

And that's how to attach audio to an object with Rogue Engine.

Loading comments...