Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-09-01 | i18n: Update list of supported locales based off glibc | Rémi Verschelde | |
Fixes #5733, fixes #6214. | |||
2016-08-31 | More improvements to visual script.. | Juan Linietsky | |
fixed a bug of not saving when sub-nodes changed. | |||
2016-08-29 | Merge pull request #6188 from TheHX/undo-redo | Rémi Verschelde | |
Implemented UndoRedo mergeable modes | |||
2016-08-28 | Several all around fixes to visual scripting (in the process of creating demos) | Juan Linietsky | |
2016-08-28 | Merge pull request #6249 from volzhs/issue-6121 | Rémi Verschelde | |
Show last added action on Input Map | |||
2016-08-28 | Show last added action on Input Map and implement InputEvent "==" | volzhs | |
2016-08-27 | Merge pull request #6270 from neikeq/pr-m32-ctor | Rémi Verschelde | |
Matrix32: Add a constructor which takes six real_t params | |||
2016-08-27 | Merge pull request #6187 from TheHX/pr-pinfo-function | Rémi Verschelde | |
Added add_property_info function to Globals and EditorSettings classes | |||
2016-08-27 | Merge pull request #6290 from caryoscelus/master | Ignacio Etcheverry | |
fix string iterator | |||
2016-08-26 | Merge pull request #6239 from volzhs/fix-return-spb | George Marques | |
Fix StreamPeerBuffer::duplicate() does not return value | |||
2016-08-26 | fix string iterator | caryoscelus | |
Since strings are null-terminated, size() returns incorrect length, so use length() instead. fixes #6287 | |||
2016-08-25 | More visual script work | Juan Linietsky | |
-Block switches to 2d/3d editor if editing visual script -Added cast node in flow control -Added ability to do RPC in visual script -Comment nodes -Fix bug with inverted cable in connecting backwards -Copy and paste nodes, including from different scripts | |||
2016-08-24 | Matrix32: Add constructor that takes six real_t params | Ignacio Etcheverry | |
2016-08-23 | Proper function/property selection in visual script editing for property. | Juan Linietsky | |
This one has an ordered list, built-in description, search, etc. | |||
2016-08-22 | Fix StreamPeerBuffer::duplicate() does not return value | volzhs | |
2016-08-22 | -High Level protocol optimization (should be smaller) | Juan Linietsky | |
-Ability to set compression to ENet packets (check API) -Fixed small bug in StringDB that lead to duplicate empty strings -Added a new class, StreamPeerBuffer, useful to create your own tightly packed data | |||
2016-08-19 | Changed API to use sequenced packets for UDP (drop old) | Juan Linietsky | |
2016-08-19 | Brand new networked multiplayer | Juan Linietsky | |
2016-08-17 | Implemented UndoRedo mergeable modes | Franklin Sobrinho | |
2016-08-16 | Added add_property_info function to Globals and EditorSettings classes | Franklin Sobrinho | |
2016-08-14 | Added high level networked multiplayer to Godot. | Juan Linietsky | |
It's complete, but absolutely and completely untested, undocumented and NSFW. Have fun :-) | |||
2016-08-14 | Missing some bits, and added connection status. | Juan Linietsky | |
2016-08-14 | -Added an ENet implementation for NetworkedMultiplayerPeer for "a bit higher ↵ | Juan Linietsky | |
level" networking. | |||
2016-08-08 | Fixed bug in make_dir_recursive, closes #6016 | Juan Linietsky | |
2016-08-08 | Merge pull request #6055 from eska014/native-bind-rettype | Rémi Verschelde | |
Allow documenting unexposed return types in bind_native_method | |||
2016-08-08 | Added a simpler way to do sub-functions in both visual and gdscript with the ↵ | Juan Linietsky | |
subcall node. With this, visual script is almost done (missing registering custom nodes from addon). All this is probably pretty broken, too and needs a lot of testing. | |||
2016-08-07 | Automatically turn on process callbacks if relevant callbacks in node exists | Juan Linietsky | |
2016-08-07 | -Added yield nodes to visual script | Juan Linietsky | |
-Added input selection nodes to visual script -Added script create icon for those who miss it, will only appear when it can be used. | |||
2016-08-06 | Reverted printable null object, seems to cause bugs around and not sure why. | Juan Linietsky | |
Will have to check better, likely for 3.0 | |||
2016-08-06 | Likely with bugs and with some features are missing, as well as profiler ↵ | Juan Linietsky | |
support, but VisualScript should be more or less done! | |||
2016-08-05 | VisualScript can now execute visual scripts, but there is no debugger or ↵ | Juan Linietsky | |
profiler yet. | |||
2016-08-06 | Allow documenting unexposed return types in bind_native_method | eska | |
Document return type of `Object.call` and `GDScript.new` | |||
2016-08-03 | More progress on visual script editing | Juan Linietsky | |
2016-08-02 | Merge branch 'master' of https://github.com/godotengine/godot | Juan Linietsky | |
2016-08-02 | WIP visual scripting, not working yet but you can check out stuff | Juan Linietsky | |
2016-07-31 | Merge pull request #5976 from allkhor/master | Rémi Verschelde | |
Fix String::is_valid_integer() for single symbols + and - | |||
2016-07-30 | Document FuncRef, GDFunctionState, InstancePlaceholder, RID, World2D | eska | |
2016-07-31 | Fix String::is_valid_integer() for single symbols + and - | allkhor | |
2016-07-28 | Fix regression with str() improvements for math types | Ignacio Etcheverry | |
2016-07-27 | Merge pull request #5921 from neikeq/pr-issue-5919 | Rémi Verschelde | |
Prettier str() for some math types | |||
2016-07-27 | Prettier str() for some math types | Ignacio Etcheverry | |
2016-07-27 | Fix reading of empty StringArray-s in .tscn | Bojidar Marinov | |
Closes #5912 | |||
2016-07-26 | Changed the way the step decimals are computed to a safer way, fixes many ↵ | Juan Linietsky | |
issues. | |||
2016-07-24 | Merge pull request #5524 from pkowal1982/master | Juan Linietsky | |
Array has(var value) function | |||
2016-07-24 | Turn some prints to error logs, remove others | Rémi Verschelde | |
Fixes #5876 in passing. | |||
2016-07-23 | Fix warnings in core/variant_op.cpp | Johan Manuel | |
Adds default cases in switches where needed, and replaces '0;' with ';;' in macro expansions (as suggested by @vnen in #5587). | |||
2016-07-22 | Merge pull request #5847 from 29jm/patch-3 | Rémi Verschelde | |
Expose virtual keyboard functions to GDScript | |||
2016-07-21 | Expose virtual keyboard functions to GDScript | Johan Manuel | |
2016-07-21 | Merge pull request #5560 from vnen/os-request-attention | Rémi Verschelde | |
Add OS.request_attention() for Windows | |||
2016-07-19 | put text formats for resources and scenes as priority | Juan Linietsky | |