AvatarChatServiceFeature
A bitmask enum whose items represent individual avatar chat capabilities for voice and video communication within an experience.
Items 11
| History | Name | Value | Description | |
|---|---|---|---|---|
| 578 | None | 0 | No avatar chat features are enabled. This is the default value of the bitmask before any capabilities are resolved. | |
| 578 | UniverseAudio | 1 | Voice chat audio is enabled at the universe level. This is a server-side setting configured by the experience creator; it must be combined with AvatarChatServiceFeature.PlaceAudio for audio to be active in a given place. | |
| 578 | UniverseVideo | 2 | Avatar video (camera-based facial animation) is enabled at the universe level. This is a server-side setting configured by the experience creator; it must be combined with AvatarChatServiceFeature.PlaceVideo for video to be active in a given place. | |
| 578 | PlaceAudio | 4 | Voice chat audio is enabled for the current place. Both this flag and AvatarChatServiceFeature.UniverseAudio must be set for audio to be active in the place. | |
| 578 | PlaceVideo | 8 | Avatar video (camera-based facial animation) is enabled for the current place. Both this flag and AvatarChatServiceFeature.UniverseVideo must be set for video to be active in the place. | |
| 578 | UserAudioEligible | 16 | The user meets the requirements to use voice chat audio (age-verified, not banned, etc.). Eligibility is resolved per-player from backend permissions; it does not imply the user has opted in (see AvatarChatServiceFeature.UserAudio). | |
| 578 | UserAudio | 32 | The user has opted in to voice chat audio. This flag is only meaningful when AvatarChatServiceFeature.UserAudioEligible is also set; together they indicate the user both can and has chosen to use voice. | |
| 578 | UserVideoEligible | 64 | The user meets the requirements to use avatar video (camera-based facial animation). Eligibility is resolved per-player from backend permissions; it does not imply the user has opted in (see AvatarChatServiceFeature.UserVideo). | |
| 578 | UserVideo | 128 | The user has opted in to avatar video (camera-based facial animation). This flag is only meaningful when AvatarChatServiceFeature.UserVideoEligible is also set; together they indicate the user both can and has chosen to use video. | |
| 580 | UserBanned | 256 | The user is currently banned from avatar chat features. When this flag is present in the client features mask, voice and video capabilities are unavailable to the player regardless of other eligibility flags. | |
| 617 | UserVerifiedForVoice | 512 | The user has completed voice verification. |
Description
A bitmask enum whose items represent individual avatar chat capabilities for
voice and video communication within an experience. Each item is a single bit
flag; multiple flags are combined with bitwise-OR to form a feature mask that
IsEnabled() can test. Flags fall into three categories: universe/place
settings (set by the server based on creator configuration), user eligibility
and opt-in state (resolved per-player from backend permissions), and
moderation status.
History 12
- 617 Add UserVerifiedForVoice
- 580 Add UserBanned
- 578 Add UserVideoEligible
- 578 Add UserVideo
- 578 Add UserAudioEligible
- 578 Add UserAudio
- 578 Add UniverseVideo
- 578 Add UniverseAudio
- 578 Add PlaceVideo
- 578 Add PlaceAudio
- 578 Add None
- 578 Add AvatarChatServiceFeature