()
| 176 | /** Map width in tiles | 地图宽度(图块数) */ |
| 177 | @Property({ type: 'integer', label: 'Width (Tiles)', min: 1 }) |
| 178 | public get width(): number { |
| 179 | return this._width; |
| 180 | } |
| 181 | |
| 182 | public set width(value: number) { |
| 183 | if (value !== this._width && value > 0) { |