aboutsummaryrefslogtreecommitdiff
path: root/scene/2d (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Add null check to ParallaxLayer get_parent() callsHein-Pieter van Braam2017-08-221-0/+6
| | | | | | | | | | | | This fixes #10515
* | | Merge pull request #10340 from Rubonnek/remove-unnecessary-assignmentsRémi Verschelde2017-08-221-3/+1
|\ \ \ | | | | | | | | Removed unnecessary assignments
| * | | Removed unnecessary assignmentsWilson E. Alvarez2017-08-211-3/+1
| | | |
* | | | Merge pull request #10351 from neikeq/enums-are-for-the-weakJuan Linietsky2017-08-2110-58/+62
|\ \ \ \ | |/ / / |/| | | ClassDB: Provide the enum name of integer constants
| * | | ClassDB: Provide the enum name of integer constantsIgnacio Etcheverry2017-08-2010-59/+62
| | | |
* | | | Merge pull request #10319 from neikeq/pr-engine-editor-hintJuan Linietsky2017-08-2016-43/+67
|\ \ \ \ | |/ / / |/| | | Adds Engine::is_editor_hint() method
| * | | Removes editor_hint from SceneTreeIgnacio Etcheverry2017-08-1916-43/+67
| | | |
* | | | Added polygon antialiasing, but it does not work on nvidia. Will have to try ↵Juan Linietsky2017-08-194-10/+30
| |_|/ |/| | | | | | | | something else..
* | | Synchronize parameter names in definition and declarationTwistedTwigleg2017-08-1611-18/+18
| | | | | | | | | | | | Fixes #10244.
* | | Fix double point in Navigation2DPedro J. Estébanez2017-08-161-1/+2
| |/ |/| | | | | Fixes #10324.
* | Merge pull request #10339 from bojidar-bg/x-fix-scale-conflictIgnacio Etcheverry2017-08-141-1/+1
|\ \ | | | | | | Rename Light2D::scale to texture_scale, so it doesn't conflict
| * | Rename Light2D::scale to texture_scale, so it doesn't conflictBojidar Marinov2017-08-141-1/+1
| |/
* | Merge pull request #10298 from nhold/kinematic-body-2d-_move-fixes-#10107Rémi Verschelde2017-08-131-1/+2
|\ \ | | | | | | Fix missing and incorrect values in return value of _move method
| * | Fix missing and incorrect values in return value of _move methodNathan Hold2017-08-121-1/+2
| |/
* / Disabling Particles::one_shot restarts emissionZher Huei Lee2017-08-121-0/+2
|/ | | | Fixes #10181
* Merge pull request #9987 from Rubonnek/move-members-to-initilization-listRémi Verschelde2017-08-111-3/+3
|\ | | | | Moved member variables from constructor to initialization list
| * Moved member variables from constructor to initialization listWilson E. Alvarez2017-08-081-3/+3
| |
* | Fixes method definitions with extra number of argumentsIgnacio Etcheverry2017-08-102-2/+2
| |
* | Removes type information from method bindsIgnacio Etcheverry2017-08-1019-66/+66
|/
* Ability to pause particles, closes #3675Juan Linietsky2017-08-071-0/+9
|
* Merge pull request #10141 from ISylvox/lower_case_godot_apiRémi Verschelde2017-08-075-7/+7
|\ | | | | Makes all Godot API's Methods lower_case
| * Makes all Godot API's methods Lower CaseIndah Sylvia2017-08-075-7/+7
| |
* | Merge pull request #10109 from eska014/init-particles2d-draw-orderRémi Verschelde2017-08-071-0/+1
|\ \ | |/ |/| Initialize Particles2D draw order property
| * Initialize Particles2D draw order propertyL. Krause2017-08-051-0/+1
| |
* | few bugs fixed thanks to explicit bool constructor and clang.Juan Linietsky2017-08-051-0/+1
| | | | | | | | explicit bool constructor has thus now been removed, as it served it's mission!
* | Merge pull request #10116 from neikeq/prop_method_ambiguitiesJuan Linietsky2017-08-052-3/+3
|\ \ | | | | | | Renames properties and methods to avoid ambiguities
| * | Renames properties and methods to avoid ambiguitiesIgnacio Etcheverry2017-08-052-3/+3
| | | | | | | | | | | | | | | - Method Node2D.scale(Vector2) renamed to Node2D.apply_scale(Vector2) - Property BaseButton.is_pressed renamed to BaseButton.pressed
* | | emit signal properly when frame has changed in autoplay, fixes #7730Juan Linietsky2017-08-051-0/+1
| | |
* | | Properly update frame range after modifying the vframe/hframes, closes #7624Juan Linietsky2017-08-051-2/+2
| | |
* | | Warn about resizing a rigidbody (2D or 3D), covers the most common cases, ↵Juan Linietsky2017-08-052-0/+37
| |/ |/| | | | | closes #7615
* | Merge pull request #10040 from Hassan-A/getCells3.0Rémi Verschelde2017-08-032-0/+16
|\ \ | | | | | | Added get_used_cells_by_id method 3.0
| * | Added get_used_cells_by_id method 3.0Hassan A2017-08-022-0/+16
| | |
* | | Merge pull request #8209 from robertdhernandez/Texture-Region-Editor-SyncRémi Verschelde2017-08-011-0/+1
|\ \ \ | |/ / |/| | Texture region now updates when changing an Atlas region rect
| * | Texture region now updates when changing an AtlasRobert Hernandez2017-06-291-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | - Removed atlas_changed signal for AtlasTexture - Changes are now handled by _notify_change - Removed unneccesary signal connections - Texture preview now updates in real-time Fixed TextureRegionEditor constantly regenerating
* | | Merge pull request #9791 from bojidar-bg/6087-add-global-local-convRémi Verschelde2017-07-242-0/+16
|\ \ \ | | | | | | | | Add .to_local/.to_global methods on Node2D and Spatial
| * | | Add .to_local/.to_global methods on Node2D and SpatialBojidar Marinov2017-07-232-0/+16
| | |/ | |/| | | | | | | | | | Those are just helpers around get_global_transform().affine_inverse().xform() and get_global_transform().xform(). Closes #6087
* | | expose missing CollisionShape API for CollisionObjectJakub Grzesik2017-07-242-0/+28
| | |
* | | Merge pull request #9764 from Noshyaar/pr-fix2Rémi Verschelde2017-07-244-14/+14
|\ \ \ | | | | | | | | Add object type hint for docs
| * | | Add object type hint for docsPoommetee Ketson2017-07-234-14/+14
| |/ /
* / / Sprite: fix disconnect nonexistent signalPoommetee Ketson2017-07-231-13/+0
|/ /
* | Add object type hint for docsPoommetee Ketson2017-07-195-12/+12
| |
* | Merge pull request #9355 from TwistedTwigleg/Remote_node_enhancementRémi Verschelde2017-07-112-1/+117
|\ \ | | | | | | RemoteTransform and RemoteTransform2D enhancements
| * | Added the following features to RemoteTransform and RemoteTransform2D:TwistedTwigleg2017-07-052-1/+117
| | | | | | | | | | | | | | | - Added the ability to toggle changes in position, rotation, and scale - Added the ability to toggle changes in either local or global coordinates
* | | Merge pull request #9592 from RandomShaper/remove-warnsThomas Herzog2017-07-101-2/+5
|\ \ \ | | | | | | | | Remove warnings about benign situations
| * | | Remove warnings about benign situationsPedro J. Estébanez2017-07-101-2/+5
| | | |
* | | | Use the gravity constant to calculate weightsJohan Manuel2017-07-051-2/+3
|/ / /
* | | Fixed set_global_scale in Node2D.TwistedTwigleg2017-07-031-1/+1
| | |
* | | Readd tilemap's shape_transform and bugfixesBojidar Marinov2017-07-013-7/+9
| | | | | | | | | | | | This reverts commit a808f53020aa710ff81392e2349b8a39c55d2717.
* | | Revert "Fix Tileset/tilemap issues related to my adding of one-way ↵Juan Linietsky2017-07-013-9/+7
| | | | | | | | | | | | collisions to them"
* | | -Many fixes to VisualScript, fixed property names, etc.Juan Linietsky2017-06-302-0/+25
| | | | | | | | | | | | | | | | | | -Added ability to set/get a field in GetSet, as well as assignment ops -Added a Select node -Fixed update bugs related to variable list and exported properties, closes #9458