Skip to content

Commit

Permalink
add textureCamera and cameralayers component
Browse files Browse the repository at this point in the history
  • Loading branch information
leanmendoza committed Dec 28, 2024
1 parent 591a12f commit 8f74faf
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
11 changes: 11 additions & 0 deletions proto/decentraland/sdk/components/camera_layers.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
syntax = "proto3";

package decentraland.sdk.components;

import "decentraland/sdk/components/common/id.proto";

option (common.ecs_component_id) = 1208;

message PBCameraLayers {
repeated uint32 layers = 1;
}
13 changes: 13 additions & 0 deletions proto/decentraland/sdk/components/texture_camera.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
syntax = "proto3";

package decentraland.sdk.components;

import "decentraland/sdk/components/common/id.proto";

option (common.ecs_component_id) = 1207;

message PBTextureCamera {
optional uint32 width = 1;
optional uint32 height = 2;
optional uint32 layer = 3;
}

0 comments on commit 8f74faf

Please sign in to comment.