From c20c3b69de40102a9ec0e045fe6331375e167daa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Przemys=C5=82aw=20Pluta?= Date: Mon, 29 Aug 2022 14:59:04 +0200 Subject: [PATCH] [Proto] Add support for animated auto tiles #1 --- proto/src/main/proto/map.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/proto/src/main/proto/map.proto b/proto/src/main/proto/map.proto index bd998fc5..567ce783 100644 --- a/proto/src/main/proto/map.proto +++ b/proto/src/main/proto/map.proto @@ -33,6 +33,8 @@ message TileLayer { message AutoTileLayer { required string autotileUID = 1; repeated uint32 tiles = 2; + required bool animated = 3; + required double animationDuration = 4; } message ObjectLayer {