Home
last modified time | relevance | path

Searched refs:mapObjectCell (Results 1 – 2 of 2) sorted by relevance

/dports/graphics/tiled/tiled-1.7.2/src/tiled/
H A Deditablemapobject.cpp275 MapObjectCell mapObjectCell; in setTileFlippedHorizontally() local
276 mapObjectCell.object = mapObject(); in setTileFlippedHorizontally()
277 mapObjectCell.cell = mapObject()->cell(); in setTileFlippedHorizontally()
278 mapObjectCell.cell.setFlippedHorizontally(tileFlippedHorizontally); in setTileFlippedHorizontally()
281 asset()->push(new ChangeMapObjectCells(doc, { mapObjectCell })); in setTileFlippedHorizontally()
283 mapObject()->setCell(mapObjectCell.cell); in setTileFlippedHorizontally()
290 MapObjectCell mapObjectCell; in setTileFlippedVertically() local
291 mapObjectCell.object = mapObject(); in setTileFlippedVertically()
292 mapObjectCell.cell = mapObject()->cell(); in setTileFlippedVertically()
293 mapObjectCell.cell.setFlippedVertically(tileFlippedVertically); in setTileFlippedVertically()
[all …]
H A Dpropertybrowser.cpp1139 MapObjectCell mapObjectCell; in applyMapObjectValueTo() local
1140 mapObjectCell.object = mapObject; in applyMapObjectValueTo()
1141 mapObjectCell.cell = mapObject->cell(); in applyMapObjectValueTo()
1142 mapObjectCell.cell.setFlippedHorizontally(flippingFlags & 1); in applyMapObjectValueTo()
1143 mapObjectCell.cell.setFlippedVertically(flippingFlags & 2); in applyMapObjectValueTo()
1145 command = new ChangeMapObjectCells(mDocument, { mapObjectCell }); in applyMapObjectValueTo()