summaryrefslogtreecommitdiff
path: root/editor/plugins/tiles
AgeCommit message (Collapse)Author
2023-05-12Add info label to TileMap editorkobewi
(cherry picked from commit 979b53aba49b2ff76fb8db540f948ce503c91b2b)
2023-04-26TileMap Fix rendering odd-sized tileskleonc
(cherry picked from commit c49a7feae3418d0732369b203d0bc9e28723b9db)
2023-03-30TileSet editor AtlasMergingDialog crash fixkleonc
(cherry picked from commit c72b09639ad5a8644a1fd3bb61c5e2cca8483808)
2023-03-27TileMapEditor Fix preview rendering and transform calculationskleonc
(cherry picked from commit 224c66324b5a4f666b0c0469959af39ad5666f75)
2023-03-14Add missing TTRs in tiles editor and array inspectorHaoyu Qiu
(cherry picked from commit bef7f14885ab6ee9cdf4116f67dfa12239746677)
2023-03-13Fix TileSetEditor paiting texture_origin Vector2iNinni Pipping
(cherry picked from commit fb317546fe4ded0c5ea192ae9a870722a0d6e59c)
2023-03-13TileSet editor was out of sync with TileMap and incorrectly overwrote old ↵Niels Drost
selected TileSet after an edit call with a null pointer. (cherry picked from commit 66374c8dcee3eab1e0878e892be32cd257b43a5b)
2023-02-25fix typo `set_polygon` in GenericTilePolygonEditornklbdev
2023-02-20Fix tile atlas merging crashkobewi
2023-02-15Add missing i18n in tiles editorHaoyu Qiu
2023-02-14Fix some TileMap errors and crasheskobewi
2023-02-10Fix random placement behaviour in new TileMap EditorSnailRhymer
Fix a bug where scattering could be set to e.g. 0.9 but a tile would still always be placed, as the check rand > 0.9 would be run on every mouse movement until it was successful.
2023-02-10Merge pull request #73007 from KoBeWi/typos_be_likeRémi Verschelde
Fix error spam when deselecting TileMap
2023-02-10Fix TileMap patterns creationGilles Roudière
2023-02-10Fix error spam when deselecting TileMapkobewi
2023-01-31Use `PropertyUsageFlags` enum in parse_propertyRaul Santos
2023-01-27Merge pull request #72129 from groud/unclamp_texture_originRémi Verschelde
Rename texture_offset and unclamp it
2023-01-27Rename texture_offset and unclamp itGilles Roudière
2023-01-26Merge pull request #72050 from groud/flow_tilemap_toolbarRémi Verschelde
Make TileMap toolbar a FlowContainer
2023-01-25Make TileMap toolbar a FlowContainerGilles Roudière
2023-01-25Merge pull request #65419 from SaracenOne/tileset_read_onlyRémi Verschelde
Add read-only mode to tileset editor
2023-01-25Merge pull request #72020 from vmedea/tile-editor-thread-fixRémi Verschelde
Fix: use the right tile_set in TilesEditorPlugin::_thread
2023-01-25Add read-only mode to tileset editor.SaracenOne
2023-01-25Fix: use the right tile_set in TilesEditorPlugin::_threadmara
Instead of using the class member, use the item's tile set, as is the intent. This fixes an almost immediate crash in the editor for me.
2023-01-23Add gesture to ViewPanner and simplify a bit its APIGilles Roudière
2023-01-21Merge pull request #70773 from KoBeWi/lectorRémi Verschelde
Add range iterator to LocalVector
2023-01-21Merge pull request #70294 from KoBeWi/treedulateRémi Verschelde
Add a method to get global modulate
2023-01-21Use range iterators in LocalVector loopskobewi
2023-01-19Fix a few issues with tile animationsGilles Roudière
2023-01-18Merge pull request #71626 from groud/fix_add_tileset_layer_undoRémi Verschelde
Fixes TileSet layer addition not being undoable
2023-01-18Merge pull request #71379 from KoBeWi/destruction_of_compatibility_functionRémi Verschelde
Remove set_drag_forwarding_compat()
2023-01-18Fix right-click on tilset atlas popup wrong positionGilles Roudière
Fix similar bug in AnimationLibraryEditor
2023-01-18Fixes TileSet layer addition not being undoableGilles Roudière
2023-01-17Merge pull request #71545 from groud/fix_rect_draw_tilesetRémi Verschelde
Fixes rectangle painting weird behavior when dragging outside the atlas area
2023-01-17Merge pull request #71517 from groud/tile_data_editor_shortcut_consistencyRémi Verschelde
Make keyboard shortcuts in tile data editors consistent with tilemap editor.
2023-01-17Fixes rectangle painting when dragging outside the atlas areaGilles Roudière
2023-01-16Make keyboard shortcuts in tile data editors consistent with tilemap editor. ↵Gilles Roudière
Fix a bug with collision shapes painting.
2023-01-16Merge pull request #64021 from ajreckof/change-shortcut-for-rect-tool-tilemapRémi Verschelde
Add `Key::CTRL_OR_CMD` and use it to fix shortcut for tilemap painting tools on macOS
2023-01-16Merge pull request #70504 from KoBeWi/the_choosen_antipatternRémi Verschelde
Add EditorUndoRedoManager singleton
2023-01-16Merge pull request #59076 from ↵Rémi Verschelde
Sauermann/fix-cursorshape-tilesetatlassourceeditor Use get_cursor_shape for identifying the cursor shape in TileSetAtlasSourceEditor
2023-01-16replace the use of CTRL by CMD_OR_CTRL in three places where using CTRL ↵ajreckof
prevented the use of the functionality on mac on Mac CTRL + Left click = Right click therefore when a functionality needs CTRL + Left click it is not possible on mac. It then forcibly needs to be CMD on mac
2023-01-16Add EditorUndoRedoManager singletonkobewi
2023-01-14Remove set_drag_forwarding_compat()kobewi
2023-01-13Merge pull request #70601 from vmedea/keep-terrain-choiceRémi Verschelde
Keep terrain choice when changing layer in tilemap editor
2023-01-13Merge pull request #71335 from groud/fix_atlas_mergingRémi Verschelde
Fixes TileSet atlas merging not working correctly
2023-01-13Merge pull request #65370 from SaracenOne/tileset_editor_visibility_fixesRémi Verschelde
Fix contextual visibility of tileset and tilemap editors (again)
2023-01-13Fixes TileSet atlas merging not working correctlyGilles Roudière
2023-01-12Add expand modes to TextureRectkobewi
2023-01-10Change set_drag_forwarding() to use callables.Juan Linietsky
* This solution is much cleaner than the one in 3.x thanks to the use of callables. * Works without issues in any language (no need to worry about camel or snake case). * Editor code uses a compatibility function (too much work to redo). Fixes #59899
2023-01-05TileAtlasView Update zoom and panning before emitting signalkleonc