summaryrefslogtreecommitdiff
path: root/scene/2d
AgeCommit message (Collapse)Author
2019-06-03added MultiMeshInstance2D node for using MultiMesh in 2Dclayjohn
2019-06-02Properly add "texture_changed" signal to MeshInstance2DMichael Alexsander Silva Dias
Fixes #29410.
2019-06-02Merge pull request #28390 from KoBeWi/smaller_bigger_gizmoRémi Verschelde
Allow to change Position2D gizmo size
2019-06-01Allow to change Position2D gizmo sizeTomasz Chabora
2019-06-01Merge pull request #24560 from guilhermefelipecgs/fix_24549Rémi Verschelde
Add EDITMODE_PRIORITY for ATLAS_TILE
2019-05-29Fix wrong property binding for NavigationPolygon::verticesRémi Verschelde
2019-05-28Merge pull request #28896 from Ranoller/masterRémi Verschelde
Fix tilemap displaced textures and shapes
2019-05-25Don't allow PathFollow offset outside boundsTomasz Chabora
2019-05-24Don't modulate canvas on invisible color changeTomasz Chabora
2019-05-22Fix 2D bones ignored by onion skinningPedro J. Estébanez
Fixes #27819.
2019-05-19Fix typos with codespellRémi Verschelde
Using codespell 1.15.0. Method: ``` $ cat > ../godot-word-whitelist.txt << EOF ang curvelinear doubleclick leapyear lod merchantibility nd numer ois ony que seeked synching te uint unselect webp EOF $ codespell -w -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po" $ git diff // undo unwanted changes ```
2019-05-15Fix tilemap displaced textures and shapes with origin point BOTTOM_LEFT and ↵Ranoller
CENTER and other casuistry This commit fix https://github.com/godotengine/godot/issues/22989 fixing displaced textures and not coincident shapes in tilemap. Fix too: https://github.com/godotengine/godot/issues/15249, https://github.com/godotengine/godot/issues/28206, https://github.com/godotengine/godot/issues/28610 and probably others
2019-05-04Fix ParallaxBackground breaking when moving it out the scene treeColin Redman
2019-04-30Merge pull request #27371 from ShyRed/fixdisabled2dcollisionsRémi Verschelde
Allow adding disabled shapes
2019-04-30Merge pull request #27805 from Kanabenki/line2d-add-point-idxRémi Verschelde
Add optional position argument for add_point in Line2D
2019-04-30Merge pull request #27845 from samdze/masterRémi Verschelde
Make TileMap overridable "set_cell" function called on undo/redo
2019-04-29Merge pull request #18992 from aaronfranke/mono-equal-approxRémi Verschelde
[Core] [Mono] Improve and use approximate equality methods
2019-04-27Make TileMap overridable "set_cell" function called on undo/redoSamuele Zolfanelli
2019-04-27Revert "Fix AudioStreams::stop possibly causing a small noise"Juan Linietsky
2019-04-25Use approximate equallity methods in many placesAaron Franke
2019-04-23Allow adding disabled shapesShyRed
Adds the ability to directly add disabled shapes to a collision object. Before this commit a shape has always been assumed to be enabled and had to be disabled in an extra step.
2019-04-23Merge pull request #24489 from mateusfccp/18264_wrong_animation_errorHein-Pieter van Braam
Make AnimatedSprite.animation complain when invalid animation name
2019-04-22Merge pull request #27673 from qarmin/small_fixesRémi Verschelde
Small fixes, mostly duplicated code
2019-04-21Merge pull request #27448 from avencherus/light2d-heightRémi Verschelde
Light2D height range expanded to -2048 to 2048.
2019-04-19Added ability for multiple images to be imported as an atlasJuan Linietsky
This adds support for groups in the import system, which point to a single file. Add property hint for saving files in file field
2019-04-16Merge pull request #28038 from CatThingy/area-error-fixRémi Verschelde
Removed unnecessary error from _area_inout
2019-04-15Merge pull request #24171 from YeldhamDev/occluder_polygon_grabMichael Alexsander Silva Dias
Make OccluderPolygon2D draggable in the editor
2019-04-15Removed unnecessary error from _area_inoutCatThingy
The error was previously removed from _body_inout for the same reason. Fixes #28022.
2019-04-10Added generator audio stream, and spectrum analyzer audio effectJuan Linietsky
Made AudioFrame and Vector2 equivalent for casting. Added ability to obtain the playback object from stream players. Added ability to obtain effect instance from audio server.
2019-04-09Style: Apply new changes from clang-format 8.0Rémi Verschelde
It seems to stay compatible with formatting done by clang-format 6.0 and 7.0, so contributors can keep using those versions for now (they will not undo those changes).
2019-04-08Merge pull request #27711 from neikeq/ifdef-clang-tidyRémi Verschelde
Replace a few #if/#elif with #ifdef and "#elif defined"
2019-04-08Add optional position argument for add_point in Line2DKanabenki
2019-04-08Small fixes, mostly dupicated codeqarmin
2019-04-06Fix wrong method binds and registered classIgnacio Etcheverry
2019-04-05Replace a few #if/#elif with #ifdef and "#elif defined"Ignacio Etcheverry
2019-04-05Merge pull request #27677 from akien-mga/Wimplicit-fallthroughRémi Verschelde
Fix -Wimplicit-fallthrough warnings from GCC 8
2019-04-05Merge pull request #27153 from YeldhamDev/animsprite_backwardsRémi Verschelde
Make AnimatedSprite able to play backwards
2019-04-05Merge pull request #27240 from Chaosus/clear_line_pointsRémi Verschelde
Added method to clear all points in Line2D
2019-04-05Ability to make CanvasLayers have pseudo 3D depth.Juan Linietsky
2019-04-05Fix -Wimplicit-fallthrough warnings from GCC 8Rémi Verschelde
Adds `FALLTHROUGH` macro to specify when a fallthrough is intentional. Can be replaced by `[[fallthrough]]` if/when we switch to C++17. The warning is now enabled by default for GCC on `extra` warnings level (part of GCC's `-Wextra`). It's not enabled in Clang's `-Wextra` yet, but we could enable it manually once we switch to C++11. There's no equivalent feature in MSVC for now. Fixes #26135.
2019-04-05Merge pull request #27365 from Byteron/tile_map_negative_offsetMariano Javier Suligoy
TileMap, negative Y and X Offset
2019-04-05added negative X and negative Y offset to TileMapAaron Winter
clang-format added negative X and negative Y offset to TileMap
2019-04-05Light2D height range expanded to -2048 to 2048.Jared
2019-04-01Merge pull request #27080 from YeldhamDev/tilemap_remove_rect_dirtyRémi Verschelde
Make size cache dirty when removing tiles in 'TileMap'
2019-03-20Ensure non-emitting particles not processed on entering treeDaeil Kim
Also removed non-active CPUParticles(3d) from render list Fixes #27066
2019-03-19Added method to clear all points in Line2DChaosus
2019-03-18Add missing check for 2d physics bounce and friction settersKanabenki
The override check was already present for 3d physics but missing for 2d
2019-03-17Make AnimatedSprite able to play backwardsMichael Alexsander Silva Dias
2019-03-15Make size cache dirty when removing tiles in 'TileMap'Michael Alexsander Silva Dias
2019-03-10Fix resetting of CPUParticles (2D and 3D)JFonS