From a9a962adc727481961dad2d379121a912672cae5 Mon Sep 17 00:00:00 2001 From: pbosio Date: Tue, 26 Sep 2023 11:50:38 -0300 Subject: [PATCH] fix: deprecate Animator's state name property (#178) --- proto/decentraland/sdk/components/animator.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/decentraland/sdk/components/animator.proto b/proto/decentraland/sdk/components/animator.proto index 6e51ef0b..b7649aec 100644 --- a/proto/decentraland/sdk/components/animator.proto +++ b/proto/decentraland/sdk/components/animator.proto @@ -16,7 +16,7 @@ message PBAnimator { // AnimationState indicates the status and configuration of one available animation. message PBAnimationState { - string name = 1; // the identifier for this animation, to use in scene code + reserved 1; // deprecated `name` prop string clip = 2; // the animation path in the `files` array of the scene manifest optional bool playing = 3; // whether this animation is currently playing optional float weight = 4; // the "weight" of this animation (see below, default: 1.0)