Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-12-04 | Fix heap-use-after-free when exiting editor after editing TileSet | Haoyu Qiu | |
2022-11-30 | Fix heap-use-after-free when changing alternative tile ID | Haoyu Qiu | |
2022-11-29 | Merge pull request #69062 from trollodel/lightweight_editor_mass | Rémi Verschelde | |
Use forward-declarations in big editor classes | |||
2022-11-29 | Use forward-declarations in big editor classes | trollodel | |
2022-11-29 | Fix heap-use-after-free when removing a tile in TileSet editor | Haoyu Qiu | |
2022-11-27 | Update TileSet preview when paint custom data changes | Haoyu Qiu | |
2022-11-25 | Merge pull request #69124 from zaevi/tilemap_fix_alternative_tile | Rémi Verschelde | |
[TileMap] Fix alternative tile issues. | |||
2022-11-24 | Cleanup remaining EditorUndoRedoManager usages | kobewi | |
2022-11-25 | [TileMap] Fix alternative tile issues. | Zae | |
2022-11-21 | Code simplifications found by cppcheck | Markus Sauermann | |
They are based on: - Boolean arithmetic simplifications - setting variables that are not accessed - constant variables | |||
2022-11-17 | Fixup TileSet build after #66557 | Rémi Verschelde | |
Last rebase was too old, didn't include this API rename. | |||
2022-11-17 | Merge 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-17 | Merge pull request #64368 from YeldhamDev/tile_editor_label_center | Rémi Verschelde | |
Properly center labels in the TileMap/Set editors | |||
2022-11-14 | Remove redundant Variant-types initializations | Markus Sauermann | |
2022-11-12 | Properly center labels in the TileMap/Set editors | Michael Alexsander | |
2022-11-04 | Fix pathological corner case in drawing tileset editor | clayjohn | |
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-03 | Fix incorrect drawing of alternative tiles | Ninni Pipping | |
2022-11-02 | Unify usage of undo_redo in editor | kobewi | |
2022-10-31 | Merge pull request #67578 from KoBeWi/GEDITOR | Rémi Verschelde | |
Unify usage of GLOBAL/EDITOR_GET | |||
2022-10-31 | Merge pull request #67445 from Zylann/rename_queue_delete | Rémi Verschelde | |
Rename queue_delete => queue_free | |||
2022-10-31 | Merge pull request #67580 from KoBeWi/little_things | Rémi Verschelde | |
Minor code improvements | |||
2022-10-24 | Rename queue_delete => queue_free | Marc Gilleron | |
# Conflicts: # editor/plugins/tiles/tiles_editor_plugin.cpp | |||
2022-10-20 | Make terrain painting not change neighbors centers bits | Gilles Roudière | |
2022-10-18 | Unify usage of GLOBAL/EDITOR_GET | kobewi | |
2022-10-18 | Minor code improvements | kobewi | |
2022-10-15 | Fix case where mutex is never unlocked | Marc Gilleron | |
2022-10-15 | Merge pull request #63332 from KoBeWi/static_images_aka_photos | Rémi Verschelde | |
Make some Image methods static | |||
2022-10-15 | Separate Line and CurveLinear icons | kobewi | |
2022-10-14 | Make some Image methods static | kobewi | |
2022-10-13 | Merge pull request #59468 from EricEzaM/fix-zoom-shortcuts | Rémi Verschelde | |
Fix zoom in/out keyboard shortcuts not working | |||
2022-10-11 | Fix source sort not saving in TileMap editor | kobewi | |
2022-10-10 | Fix crashing when editing the `TileSet` field | Kongfa Waroros | |
2022-10-07 | Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵ | bruvzg | |
change warnings=all to use /W4. | |||
2022-10-04 | Disconnect TileSet from source editor if no sources | kobewi | |
2022-10-03 | Merge pull request #66713 from KoBeWi/remembuh_me | Rémi Verschelde | |
Remember tile source sort between sessions | |||
2022-10-03 | Merge pull request #66656 from magian1127/4.0DelAutotile | Rémi Verschelde | |
TileMap mouse right can delete autotile | |||
2022-10-02 | Remember tile source sort between sessions | kobewi | |
2022-09-30 | Merge pull request #65903 from groud/improve_terrain_painting | Rémi Verschelde | |
Right-click to erase TileSet terrains and bugfixes | |||
2022-09-30 | TileMap mouse right can delete autotile | Magian | |
2022-09-28 | fix(tileset): Recreate custom data editor if type has changed | MisterMX | |
Signed-off-by: MisterMX <mbxd12@web.de> | |||
2022-09-27 | Fix mouse release leaving dock area | Guilherme Sousa | |
2022-09-24 | Fix zoom in/out keyboard shortcuts not working since the introduction of ↵ | Eric M | |
EditorZoomWidget. Add KP shortcuts to zoom in/out. | |||
2022-09-20 | Merge pull request #66159 from MewPurPur/fix-animated-tiles-offset-unit | Rémi Verschelde | |
Remove px unit from animation_separation in TileSet atlas editor | |||
2022-09-20 | Remove px unit from animation_separation in TileSet atlas editor (as it's ↵ | VolTer | |
tile-based, not pixel-based) | |||
2022-09-17 | Fix atlas view drawing roots having zoom applied twice | MinusKube | |
2022-09-16 | Right-click to erase TileSet terrains and bugfixes | Gilles Roudière | |
2022-09-10 | Fix broken patterns on TileMap layer change | kobewi | |
2022-09-08 | Make `Vector2i` values paired with `EDSCALE` be just `Vector2` | Michael Alexsander | |
2022-09-08 | Merge pull request #65241 from bruvzg/no_keymap_ambiguity | Rémi Verschelde | |
Fix key mapping changes when moving from macOS to other platform. | |||
2022-09-07 | Fix key mapping changes when moving from macOS to other platform | bruvzg | |
Removes separate `Command` key (use `Meta` instead). Adds an event flag to automatically remap `Command` <-> `Control` (cannot be set alongside `Control` or `Meta`). |