summaryrefslogtreecommitdiffstats
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
* support for 2D shadow castersJuan Linietsky2015-03-024-1/+36
| | | | | | | | | | Added support for 2D shadow casters. *DANGER* Shaders in CanvasItem CHANGED, if you are using shader in a CanvasItem and pull this, you will lose them. Shaders now work through a 2D material system similar to 3D. If you don't want to lose the 2D shader code, save the shader as a .shd, then create a material in CanvasItem and re-assign the shader.
* support for light and normal mapping in 2DJuan Linietsky2015-02-181-2/+160
|
* Fix a shadow declaration.Felix Laurie von Massenbach2015-02-151-2/+2
|
* Godot UI is quick and snappy again!Juan Linietsky2015-02-151-2/+54
| | | | | Changed linked listed sort to use auxiliary memory this fixes user interface performance issues.
* fix return value of slide and reflectJuan Linietsky2015-02-151-2/+2
| | | | closes #1311
* begin new serialization frameworkJuan Linietsky2015-02-158-199/+695
| | | | also got rid of STL dependency on triangulator
* New Navigation & Pathfinding support for 2DJuan Linietsky2015-02-146-0/+1892
| | | | | | | -Added Navigation & NavigationPolygon nodes -Added corresponding visual editor -New pathfinding algorithm is modern and fast! -Similar API to 3D Pathfinding (more coherent)
* fixes to HTTPClientJuan Linietsky2015-02-112-10/+39
| | | | | -small unchunked files should work properly -blocking mode should work properly
* Merge pull request #1346 from Nulifier/import-pluginJuan Linietsky2015-02-111-1/+1
|\ | | | | Added the ability to add and remove editor import plugins.
| * Added the default arguments to the binding for ↵Jeffrey Steward2015-02-101-1/+1
| | | | | | | | ResourceImportMetadata::add_source to match the c++ version
* | Merge branch 'master' of https://github.com/okamstudio/godot into add_sprintfBil Bas (Spooner)2015-02-016-5/+38
|\|
| * Add InputEvent::ACTION get/set support for variantsanikoyes2015-01-202-0/+26
| | | | | | | | Add action_press/action_release method bind
| * fixesJuan Linietsky2015-01-131-2/+9
| |
| * Merge pull request #945 from adolson/color-contrasted-fixJuan Linietsky2015-01-081-1/+1
| |\ | | | | | | avoid potential stack overflow by recursive function call
| | * closes #163Dana Olson2014-12-081-1/+1
| | |
| * | Merge pull request #946 from adolson/uint64-fixJuan Linietsky2015-01-081-1/+1
| |\ \ | | | | | | | | wrong typedef - closes #270
| | * | wrong typedef - closes #270Dana Olson2014-12-081-1/+1
| | |/
| * | Merge pull request #958 from adolson/bind-set_window_titleJuan Linietsky2015-01-081-1/+1
| |\ \ | | | | | | | | added GDScript binding for OS.set_window_title()
| | * | added GDScript binding for set_window_titleDana Olson2014-12-101-1/+1
| | |/
* | | Completed more complex formatting.Bil Bas (Spooner)2015-02-011-57/+154
| | |
* | | Completed implementing standard formatting.Bil Bas (Spooner)2015-02-012-40/+135
| | |
* | | Added basic sprintf functionality (e.g. "fish %d %s" % [12, Vector2(1, 2)])Bil Bas (Spooner)2015-01-103-1/+115
|/ /
* | -attempt to be friendlier on non english keyboardsJuan Linietsky2015-01-041-2/+100
| |
* | -WIP to add proper key swapping according to keyboard layoutJuan Linietsky2015-01-044-0/+24
| | | | | | | | -fix with non working removal of collision exception in 3D physics
* | -Fix shortcuts for OSX code completion, fixes #1111Juan Linietsky2015-01-041-15/+59
| | | | | | | | -Fixed how translation fallbacks works, fixes #1011
* | Merge branch 'master' of https://github.com/okamstudio/godotJuan Linietsky2015-01-035-7/+38
|\ \
| * | removed printJuan Linietsky2015-01-031-2/+0
| | |
| * | -added new code completion guess locations, closes #1032Juan Linietsky2015-01-032-0/+27
| | | | | | | | | | | | -moved commandline fix to mingw-only, should fix #1064
| * | -fixed issue with denormals in half precission, closes #1073Juan Linietsky2015-01-033-7/+13
| | | | | | | | | | | | -added h_offset and v_offset to 3D Camera, should allow to do the same as in #1102
* | | -Work in progress visual shader editor *DOES NOT WORK YET*Juan Linietsky2015-01-033-0/+15
|/ /
* | -fix assignment to vector types in script using integer indices crash (#978)Juan Linietsky2015-01-021-2/+2
| |
* | -assignment of ord to string index made valid #1072Juan Linietsky2015-01-021-11/+21
| |
* | Merge pull request #1087 from adolson/connect-fixJuan Linietsky2015-01-021-1/+1
|\ \ | | | | | | change parameter name from ip to port
| * | change parameter name from ip to portDana Olson2015-01-011-1/+1
| | |
* | | Fix for bug 1088Muresan Vlad aka Mury2015-01-021-0/+2
| | |
* | | -fix get_as_text (#1022 )Juan Linietsky2014-12-211-0/+1
| | |
* | | Merge branch 'master' of https://github.com/okamstudio/godotJuan Linietsky2014-12-215-5/+12
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: modules/gdscript/gd_editor.cpp Improved code completion for InputEvent (shows members by type)
| * | | FixesJuan Linietsky2014-12-205-5/+12
| |/ / | | | | | | | | | | | | | | | | | | | | | -=-=-= -Added missing quaternion constructor -code completion fixes -winrt fixes
* / / -improved completion options for InputEvent, shows all event types nowJuan Linietsky2014-12-182-3/+16
|/ /
* | Merge pull request #984 from orbitcowboy/masterJuan Linietsky2014-12-171-1/+1
|\ \ | | | | | | xml_parser: check array length index before accessing the array.
| * | xml_parser: check array length index before accessing the array.orbitcowboy2014-12-161-1/+1
| | |
* | | -removed annoying pragmaJuan Linietsky2014-12-171-2/+2
|/ /
* | Merge branch 'master' of https://github.com/okamstudio/godotJuan Linietsky2014-12-165-3/+15
|\ \
| * | Small batch of fixesJuan Linietsky2014-12-155-3/+15
| |/ | | | | | | | | | | | | -=-=-=-=-=-=-=-=-=-= -Fixed looping error in AudioStreamResampled -winrt port progress -fixes in material in ambient light
* / New Code CompletionJuan Linietsky2014-12-166-2/+138
|/ | | | | | | | | | | | -=-=-=-=-=-=-=-=-=- -Massive improvement to code completion -Argument hinting for functions If you manage to out-smart the code-completion in a situation where completion should be possible to guess, let me know. Please enter the commit message for your changes. Lines starting
* Small FixesJuan Linietsky2014-12-081-1/+1
| | | | | | | | -=-=-=-=-=- -Bug in navmesh demo fixed -Bug in variant -Better Collada Exporter supports proper names of exported shapekeys
* More FixesJuan Linietsky2014-12-071-1/+5
| | | | | | | -=-=-=-=-= -Bug in saving multinline text in xml fixed. #925 -typo in android export fixed. #930
* -Ability to ask for documents/pictures/etc system dirs.Juan Linietsky2014-12-025-1/+53
| | | | | -Fixes to animationplayer -fixes to collada importer
* Merge pull request #863 from JIghtuse/masterJuan Linietsky2014-12-013-3/+3
|\ | | | | Fix CppCheck 'duplicateExpression' warning
| * Fix CppCheck 'duplicateExpression' warningBoris Egorov2014-11-073-3/+3
| | | | | | | | | | BTW, all three cases looks similar. It would be nice to refactor it to avoid repeating code.