AW_CHAT_SESSION

TYPE

Integer (read only)

DESCRIPTION

Specifies the speaker's session number during the event AW_EVENT_CHAT.

NOTES

Every user (and every bot) is assigned a unique session number at login.  This session number can be used by SDK applications to track individual users as they move around the scene.

EXAMPLE

void handle_chat (void)
{

  printf ("Session %d has spoken\n", aw_int (AW_CHAT_SESSION));

}

aw_event_set (AW_EVENT_CHAT, handle_chat);

SEE ALSO

AW_AVATAR_NAME
AW_AVATAR_SESSION
AW_CHAT_MESSAGE
AW_CHAT_TYPE