Skip to content

Commit

Permalink
add loop enum
Browse files Browse the repository at this point in the history
  • Loading branch information
gonpombo8 committed Oct 3, 2023
1 parent 9d40e6c commit 5dbc65a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions proto/decentraland/sdk/components/tween_sequence.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@ import "decentraland/sdk/components/tween.proto";

option (common.ecs_component_id) = 1104;

// TODO: Testing using protobuf instead of Schemas (wip)
message PBTweenSequence {
repeated PBTween sequence = 1;
bool loop = 2;
optional TweenLoop loop = 2;
}

enum TweenLoop {
TL_RESTART = 0;
TL_YOYO = 1;
}

0 comments on commit 5dbc65a

Please sign in to comment.