summaryrefslogtreecommitdiffstats
path: root/scene/2d/tile_map_layer.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@cb411fa960f0b7fdbd97dcdb4c90f9346360ee0eSpartan3222024-11-121-0/+23
|\
| * Add `TileMapLayer._update_cells` virtual callback called when the ↵Souchet Ferdinand2024-11-111-0/+23
| | | | | | | | | | | | TileMapLayer's cells are updated Made `_update_cells` a hook into the `TileMapLayer`'s internal update
* | Merge commit godotengine/godot@0f5f3bc9546b46b2029fc8896dc859697f1eab97Spartan3222024-11-111-0/+2
|\|
| * Add collision priority property to TileSet physics layersDanni2024-11-021-0/+2
| |
* | Merge commit godotengine/godot@8004c7524fb9f43425c4d6f614410a76678e0f7cSpartan3222024-10-301-1/+1
|\|
| * Set clang-format `RemoveSemicolon` rule to `true`Adam Scott2024-10-251-1/+1
| | | | | | | | - Set clang-format `Standard` rule to `c++20`
* | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| |
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
|/ | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Implement multiple occlusion polygons within each TileSet occlusion layerGilles Roudière2024-09-031-39/+58
|
* Merge pull request #90945 from Scony/extract-navigation-defaultsRémi Verschelde2024-08-291-1/+1
|\ | | | | | | Extract navigation-related defaults to separate header
| * Extract navigation-related defaults to separate headerPawel Lampe2024-08-271-1/+1
| |
* | Merge pull request #93970 from ↵Rémi Verschelde2024-08-281-2/+20
|\ \ | |/ |/| | | | | | | MarblesFr/feature/collision-occlusion-options-layer-map Add occlusion enabled option to TileMapLayer
| * Add occlusion enabled options to tile map layerSora2024-07-221-2/+20
| |
* | Add helper methods to check for tile transformskobewi2024-08-121-0/+16
|/
* Fix some TileMapLayer editing problemskobewi2024-06-291-1/+1
|
* Merge pull request #92016 from KoBeWi/pick_layers_like_a_bossRémi Verschelde2024-06-281-0/+6
|\ | | | | | | Allow selecting TileMapLayers by clicking them
| * Allow selecting TileMapLayers by clicking themkobewi2024-05-161-0/+6
| |
* | Fix TileMapLayer not respecting physics interpolation modeRicardo Buring2024-06-181-5/+47
| |
* | Implement X-draw-order switch in TileMapLayerGilles Roudière2024-06-101-8/+40
| |
* | Remove some TileMap dependencies from TileMapLayerkobewi2024-05-211-5/+90
| |
* | Fix 2d sdf collision for TileMapLayercosparks2024-05-201-0/+1
|/
* Use Core/Scene stringnames consistentlykobewi2024-05-131-1/+0
|
* Add shorthand for using singleton string nameskobewi2024-05-111-20/+20
|
* Reduce and prevent unnecessary random-access to `List`A Thousand Ships2024-05-041-4/+2
| | | | | | | | | Random-access access to `List` when iterating is `O(n^2)` (`O(n)` when accessing a single element) * Removed subscript operator, in favor of a more explicit `get` * Added conversion from `Iterator` to `ConstIterator` * Remade existing operations into other solutions when applicable
* Don't store TileMapLayer data if emptykobewi2024-04-191-0/+9
|
* [TileMap] Fix forcing cleanup on exiting tree/canvasA Thousand Ships2024-04-041-30/+28
|
* Expose TileMapLayerGilles Roudière2024-04-031-394/+431
|
* Fixed Timestep Interpolation (2D)Ricardo Buring2024-03-231-0/+17
| | | | | | | Adds fixed timestep interpolation to the rendering server (2D only). Switchable on and off with a project setting (default is off). Co-authored-by: lawnjelly <lawnjelly@gmail.com>
* Remove almost all remaining dependencies of TileMapLayer on TileMapGilles Roudière2024-02-291-117/+221
|
* Prevent threading problems in `TileMap`A Thousand Ships2024-02-271-4/+9
|
* Remove word duplicates in comments and strings, and fix casing and punctuationRobert Yevdokimov2024-02-231-2/+2
|
* Fixes a memory leak with TileMap runtime updatesGilles Roudière2024-02-211-8/+19
|
* Merge pull request #88190 from Eoin-ONeill-Yokai/bugfix/materials-tilemap2dRémi Verschelde2024-02-131-1/+1
|\ | | | | | | Fix regression where a tile's custom material was ignored
| * Fix regression where tile-specific materials were ignored.Eoin O'Neill2024-02-101-1/+1
| | | | | | | | | | | | | | Regression stemmed from commit 48bed5050b4a2d695953ace409c577bdfefe0038 The material assigned to a tile is completely ignored in master unless this line is changed.
* | Change TileMapEditor to TileMapLayerEditorGilles Roudière2024-02-121-147/+175
|/
* Make TileMapLayers extend Node2D and work as children of TileMapGilles Roudière2024-01-171-295/+351
|
* Fix some TileMap debug drawing truncating to intskleonc2024-01-141-4/+4
|
* Fix TileMap quadrant canvas item position not being localkleonc2024-01-081-1/+1
|
* Move TileMapLayer to its own filesGilles Roudière2024-01-051-0/+2886