1.3.2 • Published 4 years ago

tiled-lua-types v1.3.2

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

tiled-lua-types

Forked from tiled-types

Type definitions of Tiled generated Lua https://github.com/bjorn/tiled.

Made for Tiled 1.4.

Based on its documentation https://doc.mapeditor.org/en/stable/reference/json-map-format.

Installation

yarn add -D Nyaacinth/tiled-lua-types

Use

import TiledMap, { TiledLayerTilelayer } from "tiled-lua-types";

// Assume we're in node context
const map: TiledMap = fs.readFileSync('path/to/schema.json', 'utf8');

const allTilelayers: TiledLayerTilelayer[] = map.layers
    .filter((l): l is TiledLayerTilelayer => l.type === 'tilelayer');

You can find quite the same example here

Credits

Thanks to type-zoo for there repo configuration :+1:

And to Tiled contributors :100: