> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ChatState

> Unity PlayFab Party SDK の ChatState 列挙型のリファレンス。会話中、無音、ミュート、音声入力なしなど、プレイヤーのボイス状態を表します。

# ChatMessageState

ゲームの UI に描画するためのプレイヤーのビジュアル状態です。

## 構文

```csharp theme={null}
public enum ChatState
{
    NoAudioInput,
    Muted,
    MutedByPlatform,
    Silent,
    Talking
}
```

## 定数

| **定数**              | **説明**                                                                        |
| ------------------- | ----------------------------------------------------------------------------- |
| **NoAudioInput**    | プレイヤーに音声入力がありません。オーディオデバイスが接続されていないか、オーディオでエラーが発生している可能性があります。                |
| **Muted**           | プレイヤーはミュートされています。                                                             |
| **MutedByPlatform** | プレイヤーはプラットフォームのポリシーによりミュートされています。たとえば、他のプレイヤーとの通信を許可しないプライバシー設定を持っている場合があります。 |
| **Silent**          | プレイヤーは会話していません。                                                               |
| **Talking**         | プレイヤーは会話中です。                                                                  |


## Related topics

- [PlayFabPlayer.ChatState](/ja-jp/services/playfab/multiplayer/networking/unity-party-api-reference/classes/playfabplayer/properties/playfabunitychatstate.md)
- [PlayFab Party Unity SDK](/ja-jp/services/playfab/multiplayer/networking/unity-party-api-reference/index.md)
- [クラス PlayFabPlayer](/ja-jp/services/playfab/multiplayer/networking/unity-party-api-reference/classes/playfabplayer/index.md)
- [game_chat_state_change](/ja-jp/reference/chat/gamechat2/structs/game_chat_state_change.md)
- [game_chat_text_chat_received_state_change](/ja-jp/reference/chat/gamechat2/structs/game_chat_text_chat_received_state_change.md)
