MCPcopy Create free account
hub / github.com/esengine/esengine / height

Method height

packages/tilemap/src/TilemapComponent.ts:190–192  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

188 /** Map height in tiles | 地图高度(图块数) */
189 @Property({ type: 'integer', label: 'Height (Tiles)', min: 1 })
190 public get height(): number {
191 return this._height;
192 }
193
194 public set height(value: number) {
195 if (value !== this._height && value > 0) {

Callers

nothing calls this directly

Calls 1

resizeMethod · 0.95

Tested by

no test coverage detected