API reference
Every public class, method, and event in @codexo/exojs. Generated from source.
typeTilePropertyValue
@codexo/exojs-tilemap / tilemap / stable
Union of legal tile-property value types in the generic runtime. Format-neutral; adapters map their native property systems into this set - including the structured TilePropertyPoint, TilePropertyObjectRef, and TilePropertyTileRef variants, arrays of any of the above, and nested property bags (e.g. Tiled `class`-typed properties).
0
props
0
methods
0
events
Import
import { TilePropertyValue } from '@codexo/exojs-tilemap'Union of legal tile-property value types in the generic runtime. Format-neutral; adapters map their native property systems into this set - including the structured TilePropertyPoint, TilePropertyObjectRef, and TilePropertyTileRef variants, arrays of any of the above, and nested property bags (e.g. Tiled `class`-typed properties).
Definition1
TilePropertiesAn immutable, flat key-value bag of generic tile properties. Adapters copy and freeze source properties; the runtime never retains a caller-owned mutable objec… | TilePropertyObjectRefA reference to another object/entity. `id` is the referenced object's identity - Tiled's numeric object id, or LDtk's `entityIid`. The extra fields are LDtk-on… | TilePropertyPointA 2D point-valued tile property (e.g. an LDtk `Point` field). | TilePropertyTileRefA reference into a tileset region (e.g. an LDtk `Tile`-typed field). | boolean | null | number | readonly TilePropertyValue[] | stringSource