aboutsummaryrefslogtreecommitdiff
path: root/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge pull request #6677 from J08nY/issue-pck-packerRémi Verschelde2016-10-033-0/+253
|\ \ | | | | | | PCKPacker: Move to core from tools, fixes #4129
| * | PCKPacker: moved from tools into core, fixes #4129J08nY2016-10-013-0/+253
| |/
* | Merge pull request #6650 from volzhs/resource-pathRémi Verschelde2016-10-031-0/+5
|\ \ | | | | | | Fix error when using 2 or more slashes on resource path
| * | Fix error when using 2 or more slashes on resource pathvolzhs2016-09-301-0/+5
| | |
* | | Merge pull request #6608 from Hinsbart/signal_errRémi Verschelde2016-10-031-0/+9
|\ \ \ | | | | | | | | Throw error when trying to emit a non-existing signal.
| * | | Throw error when trying to emit a non-existing signal.Andreas Haas2016-09-251-0/+9
| |/ / | | | | | | | | | closes #6017
* | | Merge pull request #6479 from RandomShaper/improve-debug-focusRémi Verschelde2016-10-032-0/+4
|\ \ \ | | | | | | | | Improve debug focus behavior
| * | | Improve debug focus behaviorPedro J. Estébanez2016-09-142-0/+4
| | | | | | | | | | | | | | | | | | | | Fix focusing debugged game on Windows Add re-focusing editor on continue
* | | | Merge pull request #6304 from razvanc-r/masterRémi Verschelde2016-10-033-9/+19
|\ \ \ \ | |_|_|/ |/| | | (Array) .pop_front, .pop_back & .remove return values instead of void
| * | | (Array) pop_front, pop_back return valuesRăzvan Cosmin Rădulescu2016-09-113-9/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | pop_front, pop_back now return values instead of `void`. Things I didn't know how to properly implement: 1. pop_front & pop_back shows in the help menu Object as return value. I know this is incorrect but if not Object than what? Cause it can't be void. It needs to be a generic type that includes all the Array types
* | | | Fix typo for word_wrapvolzhs2016-09-302-2/+2
| | | |
* | | | Code completion for is_action_just_{pressed, released}Andreas Haas2016-09-261-1/+1
| | | | | | | | | | | | | | | | fixes #6621
* | | | Merge pull request #6568 from Hinsbart/joy_namesRémi Verschelde2016-09-262-0/+9
|\ \ \ \ | |_|_|/ |/| | | Add functions to get readable names for joystick events
| * | | Add function to get readable names for joystick eventsAndreas Haas2016-09-202-0/+9
| | | | | | | | | | | | | | | | Closes #6476
* | | | Merge pull request #6557 from anneomcl/masterIgnacio Etcheverry2016-09-202-24/+13
|\ \ \ \ | | | | | | | | | | Fix for #6158
| * | | | Fix for #6158. Converting Vector2 to Size2 for scaling functions.anneomcl2016-09-192-24/+13
| | | | |
* | | | | Merge pull request #6552 from Hinsbart/vec2_clampedRémi Verschelde2016-09-201-0/+2
|\ \ \ \ \ | | |/ / / | |/| | | Expose Vector2::clamped() to scripts
| * | | | Expose Vector2::clamped() to scriptsAndreas Haas2016-09-191-0/+2
| |/ / / | | | | | | | | | | | | | | | | Needed this and wondered that there's no built-in function for it. So I wanted to implement it and saw that it's actually already there, just wasn't bound ^^
* | | | Merge pull request #6504 from Hinsbart/joy_axisRémi Verschelde2016-09-173-60/+1
|\ \ \ \ | |/ / / |/| | | Fix input action pressed state not changing for quick joystick moveme…
| * | | Fix input action pressed state not changing for quick joystick movements.Andreas Haas2016-09-153-60/+1
| | | | | | | | | | | | | | | | | | | | fixes #6488 Also removes a bunch of dead code related to checking if a joystick axis is pressed.
* | | | Added API version and hashing to ObjectTypeDBJuan Linietsky2016-09-142-1/+188
| | | |
* | | | Added a generic AStar implementation to Godot.Juan Linietsky2016-09-133-0/+506
|/ / / | | | | | | | | | It's pretty fast, use it for games where Navigation does not cut it.
* / / Do ctrl-click on any code identifier to go to definiton or help page.Juan Linietsky2016-09-121-0/+20
|/ /
* | Merge pull request #5879 from gau-veldt/subarray_patchJuan Linietsky2016-09-102-0/+30
|\ \ | | | | | | Subarray patch
| * | Added slicing operation to DVector via DVector.subarray(int start,int end) ↵Gau o fthe Veldt2016-07-232-0/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | method. Negative indices index from the end of the array. Indices are range checked before attempting and return appropriate error when out of range. Binding for RawArray in gdscript to access DVector.subarray() provided. Documentation of RawArray.subarray() in classes.xml provided.
* | | Merge pull request #5920 from 29jm/fix-warningsJuan Linietsky2016-09-104-8/+6
|\ \ \ | | | | | | | | Fix some more warnings
| * | | Fix some warnings about misleading indentationJohan Manuel2016-08-131-1/+4
| | | |
| * | | Remove some unused variablesJohan Manuel2016-08-131-7/+0
| | | |
| * | | Fix some warnings about unhandled switch casesJohan Manuel2016-08-132-0/+2
| | | |
* | | | Merge pull request #6363 from vnen/winrtJuan Linietsky2016-09-101-0/+2
|\ \ \ \ | | | | | | | | | | Fix the support for WinRT/UWP
| * | | | Fix root path resolution on PCK fileGeorge Marques2016-09-031-0/+2
| | | | |
* | | | | Renamed the bind_native functions to bind_vararg, should make it show the ↵Juan Linietsky2016-09-075-46/+23
| | | | | | | | | | | | | | | | | | | | documentation more clearly and also make it easier to bind to C#
* | | | | Changed Vector3.snap from fmod to stepify, which makes more sense, fixes #6399Juan Linietsky2016-09-061-7/+3
| | | | |
* | | | | Merge pull request #6408 from supaiku-o/issue-6374Rémi Verschelde2016-09-061-2/+4
|\ \ \ \ \ | |_|_|_|/ |/| | | | Show object string cast instead of object id in debugger
| * | | | Show object string cast instead of object id in debuggersupaiku2016-09-061-2/+4
| | | | |
* | | | | Merge pull request #6352 from hurikhan/fix_release_build_IIRémi Verschelde2016-09-051-2/+2
|\ \ \ \ \ | | | | | | | | | | | | Fix release build. (II)
| * | | | | Fix release build. (II)Mario Schlack2016-09-011-2/+2
| | |/ / / | |/| | |
* | | | | InputEvent: Fix event comparisons when type is NONERémi Verschelde2016-09-021-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | Was a regression from 2e5a4cb5ca33576ea81601f949b2e633ff92213c. Fixes #6376.
* | | | | Merge pull request #6365 from akien-mga/pr-localesRémi Verschelde2016-09-021-24/+414
|\ \ \ \ \ | | | | | | | | | | | | i18n: Update list of supported locales based off glibc
| * | | | | i18n: Update list of supported locales based off glibcRémi Verschelde2016-09-011-24/+414
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #5733, fixes #6214.
* | | | | | Basic type constants for visual scriptJuan Linietsky2016-09-022-3/+11
| | | | | |
* | | | | | -Modified Input and added is_action_just_pressed() as well as ↵Juan Linietsky2016-09-016-11/+32
|/ / / / / | | | | | | | | | | | | | | | is_action_just_released()
* / / / / More improvements to visual script..Juan Linietsky2016-08-312-0/+7
|/ / / / | | | | | | | | | | | | fixed a bug of not saving when sub-nodes changed.
* | | | Merge pull request #6188 from TheHX/undo-redoRémi Verschelde2016-08-292-15/+58
|\ \ \ \ | | | | | | | | | | Implemented UndoRedo mergeable modes
| * | | | Implemented UndoRedo mergeable modesFranklin Sobrinho2016-08-172-15/+58
| | | | |
* | | | | Several all around fixes to visual scripting (in the process of creating demos)Juan Linietsky2016-08-282-6/+8
| | | | |
* | | | | Merge pull request #6249 from volzhs/issue-6121Rémi Verschelde2016-08-281-1/+45
|\ \ \ \ \ | | | | | | | | | | | | Show last added action on Input Map
| * | | | | Show last added action on Input Map and implement InputEvent "=="volzhs2016-08-281-1/+45
| | | | | |
* | | | | | Merge pull request #6270 from neikeq/pr-m32-ctorRémi Verschelde2016-08-271-0/+9
|\ \ \ \ \ \ | | | | | | | | | | | | | | Matrix32: Add a constructor which takes six real_t params
| * | | | | | Matrix32: Add constructor that takes six real_t paramsIgnacio Etcheverry2016-08-241-0/+9
| | | | | | |