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
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
Loading