Typing indicators let you show a “user is typing…” animation in your chat UI. The CometChat Unreal SDK delivers these as real-time events through theDocumentation Index
Fetch the complete documentation index at: https://www.cometchat.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
OnTypingChanged delegate.
Listen for Typing Events
Bind to theOnTypingChanged delegate on the Subsystem to receive typing start/stop notifications.
- Blueprint
- C++
- Get a reference to the CometChat Subsystem
- Drag off and search for On Typing Changed
- Use Bind Event to connect it to a custom event
- The custom event receives an
FCometChatTypingEventparameter
FCometChatTypingEvent
| Property | Type | Description |
|---|---|---|
Uid | FString | The user who started or stopped typing |
ConversationId | FString | The conversation where typing is happening |
bIsTyping | bool | true when the user starts typing, false when they stop |
Next Steps
Delivery & Read Receipts
Track when messages are delivered and read.
Connection Status
Monitor the WebSocket connection state.