From 7f5c76c5331e44b159a6b1d0933b7ee1abdc18d1 Mon Sep 17 00:00:00 2001 From: Alejandro Alvarez Melucci Date: Wed, 30 Oct 2024 15:01:29 -0300 Subject: [PATCH] Added offset and tiling optional properties to texture.proto --- proto/decentraland/common/texture.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/proto/decentraland/common/texture.proto b/proto/decentraland/common/texture.proto index 5cd109b3..9ed1afed 100644 --- a/proto/decentraland/common/texture.proto +++ b/proto/decentraland/common/texture.proto @@ -17,6 +17,8 @@ message Texture { string src = 1; optional TextureWrapMode wrap_mode = 2; // default = TextureWrapMode.Clamp optional TextureFilterMode filter_mode = 3; // default = FilterMode.Bilinear + optional Vector2 offset = 4 // default = Vector2.Zero + optional Vector2 tiling = 5 // default = Vector2.Zero } message AvatarTexture {