Skip to content

Commit

Permalink
feat: uitransform pointerFilter property (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
pravusjif authored Oct 20, 2023
1 parent d038938 commit db4a595
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions proto/decentraland/sdk/components/ui_transform.proto
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ enum YGEdge {
YGE_ALL = 8;
}

enum PointerFilterMode {
PFM_NONE = 0;
PFM_BLOCK = 1;
}

message PBUiTransform {
int32 parent = 1;
int32 right_of = 2;
Expand Down Expand Up @@ -138,4 +143,6 @@ message PBUiTransform {
float padding_right = 49;
YGUnit padding_bottom_unit = 50; // YGUnit.YGU_UNDEFINED
float padding_bottom = 51;

optional PointerFilterMode pointer_filter = 52; // default: PointerFilterMode.PFM_NONE
}

0 comments on commit db4a595

Please sign in to comment.