# ActionSoundProperties

## Content

# Type Alias: ActionSoundProperties

```ts
type ActionSoundProperties = object;
```

Represents an action that plays a sound.

## See

[ActionSound](../classes/ActionSound)

## Properties

### mix?

```ts
optional mix?: boolean;
```

Indicates whether to mix this sound with any other sound already playing.

***

### repeat?

```ts
optional repeat?: boolean;
```

Indicates whether to repeat the sound indefinitely.

***

### synchronous?

```ts
optional synchronous?: boolean;
```

Indicates whether to play the sound synchronously.

***

### volume?

```ts
optional volume?: number;
```

The volume at which to play the sound, in the range from -1.0 to 1.0.
