aboutsummaryrefslogtreecommitdiff
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge branch 'master' of https://github.com/okamstudio/godotJuan Linietsky2015-06-305-1/+15
|\ \
| * | -some changes by okamJuan Linietsky2015-06-305-1/+15
| | |
* | | small fixesJuan Linietsky2015-06-301-3/+6
|/ /
* | Several performance improvements, mainly in loading and instancing scenes ↵Juan Linietsky2015-06-2920-86/+223
| | | | | | | | | | | | | | | | and resources. A general speedup should be apparent, with even more peformance increase when compiling optimized. WARNING: Tested and it seems to work, but if something breaks, please report.
* | improved get_node(), connect(), etc code completion.Juan Linietsky2015-06-262-0/+21
| | | | | | | | | | -properly completes text arguments -includes the "/root" autoloads
* | added ability to define signals in scriptJuan Linietsky2015-06-242-0/+13
| | | | | | | | closes #2175
* | Added helper methods to InputEventJaguar2015-06-233-0/+16
| |
* | Merge pull request #2072 from jrimclean/masterJuan Linietsky2015-06-222-2/+39
|\ \ | | | | | | Interpolation for affine transformations/Bound rot/pos Matrix32 constructor
| * | Changed floats to 'real_t'.James McLean2015-06-111-11/+9
| | |
| * | Changed 'scale' to 'scale_basis' in 'interpolate_with'.James McLean2015-06-111-1/+1
| | |
| * | Implemented interpolation for affine transformations ↵James McLean2015-06-111-2/+34
| | | | | | | | | | | | (Matrix32::interpolate_with)
| * | Added rot/pos constructor for Matrix32 variant.James McLean2015-06-091-0/+7
| | |
* | | small in place fixesJuan Linietsky2015-06-221-5/+5
| | |
* | | Merge pull request #2144 from Krzycho666/UndoRedo_fixJuan Linietsky2015-06-222-0/+130
|\ \ \ | | | | | | | | added GDscript bidings for UndoRedo class
| * | | added some missing biddingskrzycho2015-06-221-0/+3
| | | |
| * | | - added GDscript bidings for UndoRedo class mechanizmkrzycho2015-06-212-0/+127
| | | | | | | | | | | | | | | | - registered UndoRedo
* | | | Multiple scene editing *POTENTIALLY UNSTABLE*Juan Linietsky2015-06-229-18/+168
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -ability to edit multiple scenes at the same time -resource internal IDs are now persistent, this makes multiple scene editing possible but maaaaay result in file corruption bugs (tested and could not find anything but possibility exists because core code changed, report immediately if you find this). -properly save settings, layout, etc when edited -script editing is independent from scene editing now -show a yellow box when a script belongs to the scene
* | | missing changesJuan Linietsky2015-06-141-0/+3
| | |
* | | some optimizations in godot memory handlingJuan Linietsky2015-06-122-12/+12
|/ /
* | Fixed get_packet/put_packet bindings in PacketPeer.James McLean2015-06-081-2/+2
| |
* | Merge pull request #2037 from est31/use-local-winJuan Linietsky2015-06-073-11/+28
|\ \ | | | | | | Time zone support
| * | Add OS.get_time_zone_info functionest312015-06-063-1/+18
| | | | | | | | | | | | | | | | | | The returned dictionary maps "name" to the name of the current time zone, and "bias" to a bias from UTC in minutes.
| * | Add utc param to get_time and get_date methodsest312015-06-063-10/+10
| | | | | | | | | | | | | | | | | | If utc == false, we return the local time, like before. Otherwise, we return UTC time. utc defaults to false to not break behaviour.
* | | Merge pull request #2029 from est31/rawarrayJuan Linietsky2015-06-071-1/+36
|\ \ \ | | | | | | | | Add String.to_utf8() and String.to_ascii()
| * | | Add String.to_utf8() and String.to_ascii()est312015-06-041-1/+36
| |/ /
* | | Merge pull request #1977 from choikwa/masterJuan Linietsky2015-06-071-1/+1
|\ \ \ | | | | | | | | fix typo error in Color::invert, fixes #1967
| * \ \ Merge pull request #2 from okamstudio/masterKevin Choi2015-05-318-12/+46
| |\ \ \ | | | | | | | | | | pull
| * \ \ \ Merge pull request #1 from okamstudio/masterKevin Choi2015-05-253-6/+56
| |\ \ \ \ | | | | | | | | | | | | improved animation editor
| * | | | | fix typo error in Color::invertchoikwa2015-05-241-1/+1
| | | | | |
* | | | | | -fixed many memory initialization issuesJuan Linietsky2015-06-064-9/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -fixed deadlock on previews thread -fixed compilation errors on unix
* | | | | | Merge remote-tracking branch 'origin/master'Juan Linietsky2015-06-062-0/+78
|\ \ \ \ \ \ | | |_|_|/ / | |/| | | | | | | | | | | | | | | | Conflicts: tools/editor/io_plugins/editor_texture_import_plugin.cpp
| * | | | | -fixes to navigation, so edge-merging is more flexible on conflictJuan Linietsky2015-06-012-0/+78
| | |_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | -add tab support to richtextlabel -some click fixes to audio stream resampled -ability to import largetextures (dialog)
* / | | | new file dialog!Juan Linietsky2015-06-064-1/+58
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -ItemList control for easier lists/thumbnails -New file dialog, with support for thumbnails, favorites, recent places, etc -Moved .fscache out of the project, no more bugs due to committed/pulled .fscache! -Dir dialog now sorts directories
* | | | work in progress, resource previewsJuan Linietsky2015-05-315-6/+20
| | | |
* | | | added conversion from int, string to colorJuan Linietsky2015-05-271-2/+6
| | | | | | | | | | | | | | | | fixes #1971
* | | | ability to run 2D physics in a threadJuan Linietsky2015-05-261-0/+1
| | | | | | | | | | | | | | | | | | | | also, 2D physics is now thread safe too. see physics_2d/thread_model
* | | | opening data.pczAriel Manzur2015-05-251-1/+1
| | | |
* | | | fixed support for zip packagesAriel Manzur2015-05-251-3/+18
| |/ / |/| |
* | | improved animation editorJuan Linietsky2015-05-253-6/+56
|/ / | | | | | | | | | | | | | | | | -same-value link keys -new layout -forward, backwards playback -integrated curve/property editor -auto increment sprite frame after insert -copy & paste animation resoucres
* | fixes on sample importingJuan Linietsky2015-05-191-1/+1
| |
* | more fixesJuan Linietsky2015-05-194-3/+15
| | | | | | | | | | | | -only refuse to load an older file if version major is different, fixes #1944 -fix drive letter default value, fixes #1939
* | fix a crash situation when starting a thread and other small fixesJuan Linietsky2015-05-181-2/+9
| |
* | fix a compile errorJuan Linietsky2015-05-182-4/+4
| |
* | -Rename unexisting by nonexistant, closes #1940Juan Linietsky2015-05-184-6/+24
| | | | | | | | -Added function to retrieve list of actions fron InputMap
* | properly save external resources, fixes #1924Juan Linietsky2015-05-172-1/+23
| | | | | | | | added API to get scancode names to OS
* | -Integers and Float should interpolate on animation, maybe fixes #1891, ↵Juan Linietsky2015-05-161-1/+9
| | | | | | | | please test
* | Fixes problem parsing config files using ConfigFileJuan Linietsky2015-05-121-0/+2
| |
* | -shadergraph now saved when on external file and modified, fixes #1832Juan Linietsky2015-05-111-1/+7
| |
* | -convert to subscene keeps signal connections, fixes #1863Juan Linietsky2015-05-102-0/+18
| |
* | Merge pull request #1844 from daltomi/SIGSEGVJuan Linietsky2015-05-071-1/+3
|\ \ | | | | | | Fix segment violation MINIZIP_ENABLED