---
title: "playAudio(_:waitForCompletion:)"
framework: scenekit
role: symbol
role_heading: Type Method
path: "scenekit/scnaction/playaudio(_:waitforcompletion:)"
---

# playAudio(_:waitForCompletion:)

Creates an action that plays an audio source.

## Declaration

```swift
class func playAudio(_ source: SCNAudioSource, waitForCompletion wait: Bool) -> SCNAction
```

## Parameters

- `source`: The audio source to play.
- `wait`: If doc://com.apple.documentation/documentation/Swift/true, the duration of this action is the same as the length of the audio playback. If doc://com.apple.documentation/documentation/Swift/false, the action is considered to have completed immediately.

## Return Value

Return Value A new action object.

## Discussion

Discussion When the action executes, SceneKit plays the audio source on the target node—any positional audio effects are based on the node’s position. For more information about positional audio in SceneKit, see SCNAudioPlayer. This action is not reversible; the reverse of this action is the same action.
