Construct a SoundEffectComponent from the file names of the sounds to play on events.
An object with the names of the sounds for events for which a sound should play
Optional
arrive?: stringThe sound to play upon arrival at a destination
Optional
collide?: stringThe sound to play when there is a collision with this actor
Optional
defeat?: stringThe sound to play when the actor is defeated
Optional
disappear?: stringThe sound to play when the actor disappears
Optional
jump?: stringThe sound to play when the actor jumps
Optional
toss?: stringThe sound to play when the actor tosses a projectile
Sound to play upon an arrival at a destination
Sound to play when there a collision with this actor
Sound to play when an actor is defeated
Sound to play when the actor disappears
Sound to play when an actor jumps
Sound to play when the actor tosses a projectile
SoundEffect provides a set of sounds associated with events that can happen to an actor. This lets us easily know which sound to play without having to rely on a callback. Note that this component has the full set of possible sounds, even though not all are appropriate for any single actor.