기술 자료

Development

User Acquisition

Monetization

산업 분야

Vivox Unreal SDK

Vivox Unreal SDK

이 페이지는 선택한 언어로 제공되지 않습니다.
Vivox
​
​
Vivox Unreal SDK
  • Overview
  • Get started
  • Release notes
  • Developer guide
    • Set up your project
    • Unity Authentication Service in Unreal
    • Create voice and text channels
      • Channel management
      • Channel name criteria
      • Channel types
      • Positional channels
        • Large 3D channels setting
        • Positional channel properties
        • Positional channel configuration
      • Channel identifiers for large scale games
      • Participant events
      • Join a channel
      • Leave a channel
      • Channel webhooks
      • Audio injection
      • Automatic connection recovery
    • Messaging
    • Audio management
    • Muting
    • In-game moderation
    • Android app development
    • iOS app development
    • Server-side recording
    • Speech-to-text audio transcription
    • Text-to-speech
    • Real-time recording
    • Transmission
    • Troubleshooting
  • Tutorials
  • Reference
  1. Vivox Unreal SDK documentation
  2. Channels

Positional channel properties

Understand properties for positional channels in Vivox.
읽는 시간 1분
최근 업데이트: 8달 전

The audio experience of a user in a positional audio channel is determined by the
Channel3DProperties
component of the
ChannelId
that is passed in to the
IChannelSession
during its construction.
The following properties control the 3D experience in the channel. Each of these properties are detailed in the HTML reference for the
Channel3DProperties
class.
  • AudibleDistance
    • The maximum distance away from a speaker that a listener can hear the speaker and receive their text messages.
    • The default value is 2700.
  • ConversationalDistance
    • Controls the range within which a speaker’s audio remains at its original volume, and beyond which the loudness of the voice chat starts to fade out when heard.
    • The default value is 90.
  • AudioFadeModel
    • Specifies the formula or curve that controls the shape of how the audio fades between the
      ConversationalDistance
      and the
      AudibleDistance
      .
    • The default value is
      EAudioFadeModel::InverseByDistance
      .
  • AudioFadeIntensityByDistance
    • Controls the amplitude of the
      AudioFadeModel
      curve to make the attenuation of the voice chat loudness more or less extreme.
    • The default value is 1.0.
The default
Channel3DProperties
values were chosen to provide the most natural sounding, acoustically realistic 3D audio that is suitable for most situations. When using the default properties, any listener within 27 meters (about 88.5 feet) can hear a speaker, and the speaker is heard at full volume by anyone within 0.9 meters (about 3 feet).
참고
The default distance values use centimeters because this is the default unit of distance measurement in Unreal, but you can specify these values in any scale.
When customizing distance values, consider the following guidelines:
  • You can represent the AudibleDistance and ConversationalDistance in any units, but the two units must always match. The values can be different.
    참고
    You must use the same units when reporting your actor’s position by using the Set3DPosition method.
  • ConversationalDistance is the distance from the listener at which a speaker’s voice is heard at its original volume. This must be an integer in the range 0 <= ConversationalDistance <= AudibleDistance. Consider this to be the expected close-by conversational distance.
  • The
    ConversationalDistance
    sounds the most realistic when it's half the height of a typical speaking entity in your game.
    If your players are shorter or taller than typical adult humans, considering adjusting this value to match.
  • When using the default
    AudioFadeModel
    value, if you want voice chat to naturally fade to near zero loudness at the edge of the
    AudibleDistance
    so it doesn't sound like it's being abruptly cut off, then set the
    AudibleDistance
    to a minimum of:
    32 ×
    ConversationalDistance
    ÷
    AudioFadeIntensityByDistance
    .
    If you want a lower max
    AudibleDistance
    , for example, to limit the range of received texts, then you can increase
    AudioFadeIntensityByDistance
    .
    Depending on the amount of ambient game noise or music, you might want to further adjust these values to ensure that voice chat is heard only at the distances you want.
  • When using the
    ExponentialByDistance
    AudioFadeModel
    , it's recommended that you keep the
    ConversationalDistance
    value at 1 or greater.
  • When using the
    ExponentialByDistance
    AudioFadeModel
    , it's recommended that you adjust the value of the
    AudioFadeIntensityByDistance
    property based on the following formula:
    AudioFadeIntensityByDistance
    = 3 ÷ (1 + 1.75 × log10(
    ConversationalDistance
    ))

Copyright © 2026 Unity Technologies
법률 정보개인정보 처리방침쿠키Documentation Terms of Use개인 정보 판매 또는 공유 금지개인정보 보호 선택(쿠키 설정)

'Unity', Unity 로고 및 기타 Unity 상표는 미국 및 기타 지역 내 Unity Technologies 또는 그 계열사의 상표 또는 등록상표입니다(자세한 내용은 여기에서 확인하세요). 기타 명칭 또는 브랜드는 해당 소유자의 상표입니다.

일부 페이지는 편의를 위해 기계 번역되었으며 부정확한 내용이 있을 수 있습니다. 정보가 상충되는 경우, 영어 버전을 우선으로 참조하세요.


    이 페이지의 문제 보고
    ​
    ​