Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions proto/decentraland/kernel/comms/rfc4/comms.proto
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,18 @@ message Movement {
GLIDING = 2;
CLOSING_PROP = 3;
}
// point-at
float point_at_x = 25;
float point_at_y = 26;
float point_at_z = 27;
bool is_pointing_at = 28;
}

message MovementCompressed {
int32 temporal_data = 1; // bit-compressed: timestamp + animations
int64 movement_data = 2; // bit-compressed: position + velocity
int32 head_sync_data = 3; // bit-compressed: enabled flags + yaw + pitch
int32 point_at_data = 4; // bit-compressed: flag + point coordinates
}

message PlayerEmote {
Expand Down
7 changes: 7 additions & 0 deletions proto/decentraland/social_service/v2/social_service_v2.proto
Original file line number Diff line number Diff line change
Expand Up @@ -212,9 +212,15 @@ enum BlockedUsersMessagesVisibilitySetting {
DO_NOT_SHOW_MESSAGES = 1;
}

enum SituationReactionsVisibility {
SHOW = 0;
HIDE = 1;
}

message SocialSettings {
PrivateMessagePrivacySetting private_messages_privacy = 1;
BlockedUsersMessagesVisibilitySetting blocked_users_messages_visibility = 2;
SituationReactionsVisibility show_situation_reactions = 3;
}

message GetSocialSettingsResponse {
Expand All @@ -231,6 +237,7 @@ message GetSocialSettingsResponse {
message UpsertSocialSettingsPayload {
optional PrivateMessagePrivacySetting private_messages_privacy = 1;
optional BlockedUsersMessagesVisibilitySetting blocked_users_messages_visibility = 2;
optional SituationReactionsVisibility show_situation_reactions = 3;
}

message UpsertSocialSettingsResponse {
Expand Down
Loading