From acd1db5432866eff0eff054accf077852b000f9a Mon Sep 17 00:00:00 2001 From: Lean Mendoza Date: Tue, 13 Aug 2024 07:03:16 -0300 Subject: [PATCH] use 1200 ids --- proto/decentraland/sdk/components/gltf_node.proto | 2 +- proto/decentraland/sdk/components/gltf_node_state.proto | 2 +- proto/decentraland/sdk/components/ui_scroll_result.proto | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/proto/decentraland/sdk/components/gltf_node.proto b/proto/decentraland/sdk/components/gltf_node.proto index 430737be..9f2e3503 100644 --- a/proto/decentraland/sdk/components/gltf_node.proto +++ b/proto/decentraland/sdk/components/gltf_node.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package decentraland.sdk.components; import "decentraland/sdk/components/common/id.proto"; -option (common.ecs_component_id) = 1045; +option (common.ecs_component_id) = 1200; // a GltfNode links a scene entity with a node from within a gltf, allowing the scene to inspect it or modify it. // This component must be added to a direct child of an entity with a PbGltfContainer component, or diff --git a/proto/decentraland/sdk/components/gltf_node_state.proto b/proto/decentraland/sdk/components/gltf_node_state.proto index 7b10b4f7..1ce9512e 100644 --- a/proto/decentraland/sdk/components/gltf_node_state.proto +++ b/proto/decentraland/sdk/components/gltf_node_state.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package decentraland.sdk.components; import "decentraland/sdk/components/common/id.proto"; -option (common.ecs_component_id) = 1046; +option (common.ecs_component_id) = 1201; // See the details of the GltfNode component for more information. diff --git a/proto/decentraland/sdk/components/ui_scroll_result.proto b/proto/decentraland/sdk/components/ui_scroll_result.proto index 5e475560..7875f886 100644 --- a/proto/decentraland/sdk/components/ui_scroll_result.proto +++ b/proto/decentraland/sdk/components/ui_scroll_result.proto @@ -5,7 +5,7 @@ package decentraland.sdk.components; import "decentraland/sdk/components/common/id.proto"; import "decentraland/common/vectors.proto"; -option (common.ecs_component_id) = 1097; +option (common.ecs_component_id) = 1202; message PBUiScrollResult { decentraland.common.Vector2 value = 1;