Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion proto/decentraland/kernel/comms/rfc4/comms.proto
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ message Packet {
PlayerEmote player_emote = 9;
SceneEmote scene_emote = 10;
MovementCompressed movement_compressed = 12;
LookAtPosition look_at_position = 13;
LookAtPosition look_at_position = 13;
Reaction reaction = 14;
ChatReaction chat_reaction = 15;
}
uint32 protocol_version = 11;
}
Expand Down Expand Up @@ -155,3 +157,14 @@ message Voice {
VC_OPUS = 0;
}
}

message Reaction {
int32 emoji_index = 1;
float timestamp = 2;
}

message ChatReaction {
int32 emoji_index = 1;
string message_id = 2;
string address = 3;
}
Loading