summaryrefslogtreecommitdiff
path: root/scene
AgeCommit message (Collapse)Author
2017-04-05Fixer looping timer accumulation in _processRémi Verschelde
Follow-up to #8251.
2017-04-05Merge pull request #8259 from bojidar-bg/move-slide-wall-fixRémi Verschelde
Fix is_move_and_slide_on_wall, make move_and_slide floor angle configurable
2017-04-05Merge pull request #8214 from tagcup/bounce_reflect_slideRémi Verschelde
Made slide and reflect active verbs acting on itself in Vector2 and V…
2017-04-04Fix is_move_and_slide_on_wall, make move_and_slide floor angle configurableBojidar Marinov
Fixes #7313
2017-04-04Merge pull request #8251 from cynicaldevil/masterRémi Verschelde
Previous value of time_left is added to wait_time before assigning to time_left
2017-04-04Merge pull request #8248 from Hinsbart/fix_notify_renamesRémi Verschelde
Fix more property names in _change_notify calls.
2017-04-04Merge pull request #8244 from RandomShaper/improve-touch-buttonRémi Verschelde
Improve TouchScreenButton
2017-04-04previous value of time_left is added to wait_time before assigning to time_leftNikhil Shagrithaya
2017-04-03Fix more property names in _change_notify calls.Andreas Haas
2017-04-03Made slide and reflect active verbs acting on itself in Vector2 and Vector3.Ferenc Arn
This is in alignment with other functions in vector classes. Also added checks for normalization, fixed the sign of reflect (which now corresponds to reflection along a plane mathematically), added bounce method and updated docs. Fixes #8201.
2017-04-03Improve TouchScreenButtonPedro J. Estébanez
Fix shape not being updated Add a way to hide the shape on editor and debug-with-visible-shapes Remove useless checks
2017-04-03Merge pull request #8211 from robertdhernandez/NinePatch-FixRémi Verschelde
[3.0] Fixed NinePatchRect/StyleBoxTexture incorrectly drawing AtlasTexture
2017-04-03Merge pull request #8146 from supagu/astarRémi Verschelde
Added ability to change A-star cost function
2017-04-03Merge pull request #8048 from ficoos/was_input_handledRémi Verschelde
Add the option to check if input was handled
2017-04-03Merge pull request #8219 from robertdhernandez/Node2D-Canvas-SyncAndreas Haas
Node2D/Control variables now update with canvas changes
2017-04-02Viewport: Fix undefined behaviour found by llvm sanitizer.Andreas Haas
When godot was running as the project manager, it tried to call a method on a null pointer (get_tree()->get_edited_scene_root()). This is undefined behaviour and caused a crash when compiled with sanitizing enabled.
2017-04-01Fixed Node2D/Control not updating propertiesRobert Hernandez
2017-04-01Added ability to change A-star cost functionFabian Mathews
2017-03-31Add the option to check if input was handledSaggi Mizrahi
When working with a viewport you should call Viewport.input() to pass the input, but if the input was unhandled you might also want to call Viewport.unhandled_input() so that objects in the sub-scene can handle the event. This adds a way to check if the input was handled so that you know whether you should call Viewport.unhandled_input() or not. Signed-off-by: Saggi Mizrahi <saggi@mizrahi.cc>
2017-03-31Fixed WindowDialog not aligning properlyRobert Hernandez
2017-03-30Fixed AtlasTexture being incorrectlyRobert Hernandez
Fixed StyleBoxTexture and NinePatchRect drawing the entire texture of an AtlasTexture.
2017-03-30Merge pull request #8208 from Shin-NiL/masterRémi Verschelde
Honor the Tween's final values
2017-03-30Honor the Tween's final valuesShin-NiL
2017-03-30Merge pull request #8203 from RandomShaper/add-missing-bindRémi Verschelde
Add missing binding for DUPLICATE_USE_INSTANCING
2017-03-30Add missing binding for DUPLICATE_USE_INSTANCINGPedro J. Estébanez
2017-03-24Merge pull request #8130 from volzhs/cache-font-masterRémi Verschelde
Cache DynamicFont resource for Android
2017-03-24Merge pull request #8010 from AlexHolly/Timer-is_time_leftRémi Verschelde
added Timer is_time_left()
2017-03-24Fix typos in source code using codespellRémi Verschelde
From https://github.com/lucasdemarchi/codespell
2017-03-24Cache DynamicFont resource for Androidvolzhs
2017-03-19is_active to is_pausedAlexHolly
rm doc
2017-03-18Merge pull request #8037 from RandomShaper/remove-warningRémi Verschelde
Remove warning on owner re-assignment
2017-03-18Merge pull request #8030 from RandomShaper/fix-redundant-connectionsRémi Verschelde
Fix redundant connections saved in sub-inheritance
2017-03-18Merge pull request #8023 from CrazyGuy108/masterRémi Verschelde
List Control::has_point as a virtual method
2017-03-18Merge pull request #8014 from AlexHolly/fix-remove-and-skipRémi Verschelde
fix remove_and_skip()
2017-03-15Merge pull request #8020 from karroffel/class-db-inconsistencyRémi Verschelde
fixed ClassDB inconsistencies
2017-03-15Remove warning on owner re-assignmentPedro J. Estébanez
2017-03-15Fix redundant connections saved in sub-inheritancePedro J. Estébanez
2017-03-14List Control::has_point as a virtual methodCrazyGuy108
According to Issue #8018, a BIND_VMETHOD macro wasn't present in scene/gui/control.cpp, while it was declared to be a virtual method in scene/gui/control.h. classes.xml was updated to also list this method in Control.
2017-03-13fixed ClassDB inconsistenciesKarroffel
fixes #7960
2017-03-13Merge pull request #8019 from Hinsbart/dim_fixRémi Verschelde
WindowDialog: Fix crash when running as ProjectManager
2017-03-13WindowDialog: Fix crash when running as ProjectManagerAndreas Haas
Fixes a bug introduced in #7970
2017-03-13Merge pull request #8011 from neikeq/pr-issue-6602-1Rémi Verschelde
Fix connection errors when replacing node
2017-03-13Merge pull request #7988 from RandomShaper/fix-touch-buttonRémi Verschelde
Several fixes for TouchScreenButton
2017-03-13Merge pull request #7981 from RandomShaper/position-for-2d-shadersRémi Verschelde
Map POSITION to gl_FragCoord.xy for 2D shaders
2017-03-13Merge pull request #7979 from RandomShaper/fix-sub-inheritanceRémi Verschelde
Fix node duplication in scene sub-inheritance
2017-03-12fix remove_and_skip()AlexHolly
2017-03-11Fix connection errors when replacing nodeIgnacio Etcheverry
- Avoid connecting the signals to nonexistent methods - Preserve only persistent connections
2017-03-10Fixes for TouchScreenButtonPedro J. Estébanez
- getting stuck on pause - handling input when not visible
2017-03-09Fix node duplication in scene sub-inheritancePedro J. Estébanez
2017-03-08Map POSITION to gl_FragCoord.xy for 2D shadersPedro J. Estébanez