summaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
2016-09-17Merge pull request #6504 from Hinsbart/joy_axisRémi Verschelde
Fix input action pressed state not changing for quick joystick moveme…
2016-09-15Fix input action pressed state not changing for quick joystick movements.Andreas Haas
fixes #6488 Also removes a bunch of dead code related to checking if a joystick axis is pressed.
2016-09-14Added API version and hashing to ObjectTypeDBJuan Linietsky
2016-09-13Added a generic AStar implementation to Godot.Juan Linietsky
It's pretty fast, use it for games where Navigation does not cut it.
2016-09-12Do ctrl-click on any code identifier to go to definiton or help page.Juan Linietsky
2016-09-10Merge pull request #5879 from gau-veldt/subarray_patchJuan Linietsky
Subarray patch
2016-09-10Merge pull request #5920 from 29jm/fix-warningsJuan Linietsky
Fix some more warnings
2016-09-10Merge pull request #6363 from vnen/winrtJuan Linietsky
Fix the support for WinRT/UWP
2016-09-07Renamed the bind_native functions to bind_vararg, should make it show the ↵Juan Linietsky
documentation more clearly and also make it easier to bind to C#
2016-09-06Changed Vector3.snap from fmod to stepify, which makes more sense, fixes #6399Juan Linietsky
2016-09-06Merge pull request #6408 from supaiku-o/issue-6374Rémi Verschelde
Show object string cast instead of object id in debugger
2016-09-06Show object string cast instead of object id in debuggersupaiku
2016-09-05Merge pull request #6352 from hurikhan/fix_release_build_IIRémi Verschelde
Fix release build. (II)
2016-09-03Fix root path resolution on PCK fileGeorge Marques
2016-09-02InputEvent: Fix event comparisons when type is NONERémi Verschelde
Was a regression from 2e5a4cb5ca33576ea81601f949b2e633ff92213c. Fixes #6376.
2016-09-02Merge pull request #6365 from akien-mga/pr-localesRémi Verschelde
i18n: Update list of supported locales based off glibc
2016-09-02Basic type constants for visual scriptJuan Linietsky
2016-09-01-Modified Input and added is_action_just_pressed() as well as ↵Juan Linietsky
is_action_just_released()
2016-09-01i18n: Update list of supported locales based off glibcRémi Verschelde
Fixes #5733, fixes #6214.
2016-08-31More improvements to visual script..Juan Linietsky
fixed a bug of not saving when sub-nodes changed.
2016-09-01Fix release build. (II)Mario Schlack
2016-08-29Merge pull request #6188 from TheHX/undo-redoRémi Verschelde
Implemented UndoRedo mergeable modes
2016-08-28Several all around fixes to visual scripting (in the process of creating demos)Juan Linietsky
2016-08-28Merge pull request #6249 from volzhs/issue-6121Rémi Verschelde
Show last added action on Input Map
2016-08-28Show last added action on Input Map and implement InputEvent "=="volzhs
2016-08-27Merge pull request #6270 from neikeq/pr-m32-ctorRémi Verschelde
Matrix32: Add a constructor which takes six real_t params
2016-08-27Merge pull request #6187 from TheHX/pr-pinfo-functionRémi Verschelde
Added add_property_info function to Globals and EditorSettings classes
2016-08-27Merge pull request #6290 from caryoscelus/masterIgnacio Etcheverry
fix string iterator
2016-08-26Merge pull request #6239 from volzhs/fix-return-spbGeorge Marques
Fix StreamPeerBuffer::duplicate() does not return value
2016-08-26fix string iteratorcaryoscelus
Since strings are null-terminated, size() returns incorrect length, so use length() instead. fixes #6287
2016-08-25More visual script workJuan 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-24Matrix32: Add constructor that takes six real_t paramsIgnacio Etcheverry
2016-08-23Proper function/property selection in visual script editing for property.Juan Linietsky
This one has an ordered list, built-in description, search, etc.
2016-08-22Fix StreamPeerBuffer::duplicate() does not return valuevolzhs
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-19Changed API to use sequenced packets for UDP (drop old)Juan Linietsky
2016-08-19Brand new networked multiplayerJuan Linietsky
2016-08-17Implemented UndoRedo mergeable modesFranklin Sobrinho
2016-08-16Added add_property_info function to Globals and EditorSettings classesFranklin Sobrinho
2016-08-14Added high level networked multiplayer to Godot.Juan Linietsky
It's complete, but absolutely and completely untested, undocumented and NSFW. Have fun :-)
2016-08-14Missing 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-13Fix some warnings about misleading indentationJohan Manuel
2016-08-13Remove some unused variablesJohan Manuel
2016-08-13Fix some warnings about unhandled switch casesJohan Manuel
2016-08-08Fixed bug in make_dir_recursive, closes #6016Juan Linietsky
2016-08-08Merge pull request #6055 from eska014/native-bind-rettypeRémi Verschelde
Allow documenting unexposed return types in bind_native_method
2016-08-08Added 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-07Automatically turn on process callbacks if relevant callbacks in node existsJuan Linietsky
2016-08-07-Added yield nodes to visual scriptJuan 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.