Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions content/en-us/reference/engine/enums/ListenerLocation.yaml
Original file line number Diff line number Diff line change
@@ -1,28 +1,34 @@
name: ListenerLocation
type: enum
summary: ''
description: ''
description: |
Provides a script-free and configuration-free way to spawn an `Class.AudioListener` by default. Determines where, if anywhere, a default `Class.AudioListener` should go.
code_samples: []
tags: []
deprecation_message: ''
items:
- name: Default
summary: ''
summary: |
An `Class.AudioListener` will be created and parented to `Class.Workspace.CurrentCamera` in experiences that enable voice chat.
value: 0
tags: []
deprecation_message: ''
- name: None
summary: ''
summary: |
No `Class.AudioListener|AudioListeners` will be spawned by default.
value: 1
tags: []
deprecation_message: ''
- name: Character
summary: ''
summary: |
An `Class.AudioListener` will be created and attached to the local player's
`Class.Player.Character`.
value: 2
tags: []
deprecation_message: ''
- name: Camera
summary: ''
summary: |
An `Class.AudioListener` will be created and parented to `Class.Workspace.CurrentCamera`.
value: 3
tags: []
deprecation_message: ''
Loading