From d0846808ba74efcb32aaf953f9fc89014ecf7e52 Mon Sep 17 00:00:00 2001 From: Alejandro Alvarez Melucci Date: Thu, 31 Oct 2024 15:25:29 -0300 Subject: [PATCH] Added documentation details for new properties. Fixed typo. --- proto/decentraland/common/texture.proto | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/proto/decentraland/common/texture.proto b/proto/decentraland/common/texture.proto index 5aab1ca9..75f7a5b4 100644 --- a/proto/decentraland/common/texture.proto +++ b/proto/decentraland/common/texture.proto @@ -18,8 +18,11 @@ message Texture { string src = 1; optional TextureWrapMode wrap_mode = 2; // default = TextureWrapMode.Clamp optional TextureFilterMode filter_mode = 3; // default = FilterMode.Bilinear + + // Offset for texture positioning. optional Vector2 offset = 4; // default = Vector2.Zero - optional Vector2 tiling = 5; // default = Vector2.Zero + // Tiling multiplier for texture repetition. + optional Vector2 tiling = 5; // default = Vector2.One } message AvatarTexture {