summaryrefslogtreecommitdiff
path: root/editor/plugins/tiles
AgeCommit message (Collapse)Author
2022-12-04Fix heap-use-after-free when exiting editor after editing TileSetHaoyu Qiu
2022-11-30Fix heap-use-after-free when changing alternative tile IDHaoyu Qiu
2022-11-29Merge pull request #69062 from trollodel/lightweight_editor_massRémi Verschelde
Use forward-declarations in big editor classes
2022-11-29Use forward-declarations in big editor classestrollodel
2022-11-29Fix heap-use-after-free when removing a tile in TileSet editorHaoyu Qiu
2022-11-27Update TileSet preview when paint custom data changesHaoyu Qiu
2022-11-25Merge pull request #69124 from zaevi/tilemap_fix_alternative_tileRémi Verschelde
[TileMap] Fix alternative tile issues.
2022-11-24Cleanup remaining EditorUndoRedoManager usageskobewi
2022-11-25[TileMap] Fix alternative tile issues.Zae
2022-11-21Code simplifications found by cppcheckMarkus Sauermann
They are based on: - Boolean arithmetic simplifications - setting variables that are not accessed - constant variables
2022-11-17Fixup TileSet build after #66557Rémi Verschelde
Last rebase was too old, didn't include this API rename.
2022-11-17Merge pull request #66557 from ↵Rémi Verschelde
MisterMX/fix/tileset-custom-data-type-reload-editor fix(tileset): Recreate custom data editor if type has changed
2022-11-17Merge pull request #64368 from YeldhamDev/tile_editor_label_centerRémi Verschelde
Properly center labels in the TileMap/Set editors
2022-11-14Remove redundant Variant-types initializationsMarkus Sauermann
2022-11-12Properly center labels in the TileMap/Set editorsMichael Alexsander
2022-11-04Fix pathological corner case in drawing tileset editorclayjohn
Interleaving draw_rect calls with and without a texture forces every rect to have its own draw call. In this case it meant that there is a draw call for every single tile in the atlas. This change makes it so the renderer can batch draw calls which reduced the draw call count by a factor of 512
2022-11-03Fix incorrect drawing of alternative tilesNinni Pipping
2022-11-02Unify usage of undo_redo in editorkobewi
2022-10-31Merge pull request #67578 from KoBeWi/GEDITORRémi Verschelde
Unify usage of GLOBAL/EDITOR_GET
2022-10-31Merge pull request #67445 from Zylann/rename_queue_deleteRémi Verschelde
Rename queue_delete => queue_free
2022-10-31Merge pull request #67580 from KoBeWi/little_thingsRémi Verschelde
Minor code improvements
2022-10-24Rename queue_delete => queue_freeMarc Gilleron
# Conflicts: # editor/plugins/tiles/tiles_editor_plugin.cpp
2022-10-20Make terrain painting not change neighbors centers bitsGilles Roudière
2022-10-18Unify usage of GLOBAL/EDITOR_GETkobewi
2022-10-18Minor code improvementskobewi
2022-10-15Fix case where mutex is never unlockedMarc Gilleron
2022-10-15Merge pull request #63332 from KoBeWi/static_images_aka_photosRémi Verschelde
Make some Image methods static
2022-10-15Separate Line and CurveLinear iconskobewi
2022-10-14Make some Image methods statickobewi
2022-10-13Merge pull request #59468 from EricEzaM/fix-zoom-shortcutsRémi Verschelde
Fix zoom in/out keyboard shortcuts not working
2022-10-11Fix source sort not saving in TileMap editorkobewi
2022-10-10Fix crashing when editing the `TileSet` fieldKongfa Waroros
2022-10-07Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵bruvzg
change warnings=all to use /W4.
2022-10-04Disconnect TileSet from source editor if no sourceskobewi
2022-10-03Merge pull request #66713 from KoBeWi/remembuh_meRémi Verschelde
Remember tile source sort between sessions
2022-10-03Merge pull request #66656 from magian1127/4.0DelAutotileRémi Verschelde
TileMap mouse right can delete autotile
2022-10-02Remember tile source sort between sessionskobewi
2022-09-30Merge pull request #65903 from groud/improve_terrain_paintingRémi Verschelde
Right-click to erase TileSet terrains and bugfixes
2022-09-30TileMap mouse right can delete autotileMagian
2022-09-28fix(tileset): Recreate custom data editor if type has changedMisterMX
Signed-off-by: MisterMX <mbxd12@web.de>
2022-09-27Fix mouse release leaving dock areaGuilherme Sousa
2022-09-24Fix zoom in/out keyboard shortcuts not working since the introduction of ↵Eric M
EditorZoomWidget. Add KP shortcuts to zoom in/out.
2022-09-20Merge pull request #66159 from MewPurPur/fix-animated-tiles-offset-unitRémi Verschelde
Remove px unit from animation_separation in TileSet atlas editor
2022-09-20Remove px unit from animation_separation in TileSet atlas editor (as it's ↵VolTer
tile-based, not pixel-based)
2022-09-17Fix atlas view drawing roots having zoom applied twiceMinusKube
2022-09-16Right-click to erase TileSet terrains and bugfixesGilles Roudière
2022-09-10Fix broken patterns on TileMap layer changekobewi
2022-09-08Make `Vector2i` values paired with `EDSCALE` be just `Vector2`Michael Alexsander
2022-09-08Merge pull request #65241 from bruvzg/no_keymap_ambiguityRémi Verschelde
Fix key mapping changes when moving from macOS to other platform.
2022-09-07Fix key mapping changes when moving from macOS to other platformbruvzg
Removes separate `Command` key (use `Meta` instead). Adds an event flag to automatically remap `Command` <-> `Control` (cannot be set alongside `Control` or `Meta`).