Skip to content

Commit

Permalink
make EmoteCommand simpler
Browse files Browse the repository at this point in the history
  • Loading branch information
leanmendoza committed Jul 19, 2023
1 parent 8b17566 commit 55d5653
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions proto/decentraland/sdk/components/avatar_emote_command.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ option (common.ecs_component_id) = 1088;
// AvatarEmoteCommand is a grow only value set, used to signal the renderer about
// avatar emotes playback.
message PBAvatarEmoteCommand {
string emote_urn = 1;
uint32 timestamp = 2;
bool loop = 3;
message EmoteCommand {
string emote_urn = 1;
bool loop = 2;
}

EmoteCommand emote_command = 1;
}

0 comments on commit 55d5653

Please sign in to comment.