From 3c3eebb9d40f49f45299b6f14844b72dc7e0fba9 Mon Sep 17 00:00:00 2001 From: Laserlicht <13953785+Laserlicht@users.noreply.github.com> Date: Fri, 11 Jul 2025 23:44:31 +0200 Subject: [PATCH] docs --- docs/modders/Animation_Format.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/modders/Animation_Format.md b/docs/modders/Animation_Format.md index 8b3c44082..0519eee35 100644 --- a/docs/modders/Animation_Format.md +++ b/docs/modders/Animation_Format.md @@ -45,7 +45,13 @@ VCMI allows overriding HoMM3 .def files with .json replacement. Compared to .def "frame" : 0, // Filename for this frame - "file" : "filename.png" + "file" : "filename.png", + + // Automatically create shadow for this frame if required. Optional, 0 = None, 1 = Normal Shadow, 2 = Sheared Shadow (e.g. for adventure map) + "generateShadow" : 1, + + // Automatically create overlay for this frame if required. Optional, 0 = None, 1 = Outline + "generateOverlay" : 1, }. ... ]