From 27241f42da0d8860067fc83ad96c5549fd2f3d94 Mon Sep 17 00:00:00 2001 From: Lean Mendoza <8042536+leanmendoza@users.noreply.github.com> Date: Thu, 19 Dec 2024 12:01:08 -0300 Subject: [PATCH] feat: ui transform - add z index (#232) add z index --- proto/decentraland/sdk/components/ui_transform.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/proto/decentraland/sdk/components/ui_transform.proto b/proto/decentraland/sdk/components/ui_transform.proto index 8fb002e5..a892d522 100644 --- a/proto/decentraland/sdk/components/ui_transform.proto +++ b/proto/decentraland/sdk/components/ui_transform.proto @@ -166,4 +166,6 @@ message PBUiTransform { optional ScrollPositionValue scroll_position = 55; // default position=(0,0) optional ShowScrollBar scroll_visible = 56; // default ShowScrollBar.SSB_BOTH + + optional int32 z_index = 57; // default 0 }