From dc71c70058868057fb0e78b49286b76a714eb9da Mon Sep 17 00:00:00 2001 From: dogboydog Date: Sat, 11 Jan 2025 16:30:04 -0500 Subject: [PATCH] docs: Link to transformation flag values in scripting doc (#4139) --- docs/scripting-doc/index.d.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/scripting-doc/index.d.ts b/docs/scripting-doc/index.d.ts index 573ab8a5f0..7ef86f5c4d 100644 --- a/docs/scripting-doc/index.d.ts +++ b/docs/scripting-doc/index.d.ts @@ -3919,7 +3919,11 @@ declare class Tileset extends Asset { * Flags describing transformations of tiles in this tileset that will be * allowed when using the [terrains feature](https://doc.mapeditor.org/en/stable/manual/terrain/#tile-transformations) * with this tileset. - * + * + * The flags are either some combination of {@link Tileset.AllowFlipHorizontally}, + * {@link Tileset.AllowFlipVertically}, {@link Tileset.AllowRotate}, and {@link Tileset.PreferUntransformed}, + * or equal to {@link Tileset.NoTransformation}. + * * @since 1.11.1 */ transformationFlags: number;