aboutsummaryrefslogtreecommitdiff
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge pull request #5201 from Hinsbart/quat_opRémi Verschelde2016-06-231-3/+12
|\ \ | | | | | | Expose missing Quaternion operators.
| * | Expose missing Quaternion operators.Andreas Haas2016-06-211-3/+12
| | | | | | | | | | | | | | | | | | Scripts can now evaluate the following cases: - (quat * real) and (quat / real) - (quat + quat) and (quat - quat)
* | | Fix typo to PTRCALL_ENABLED from previous commitRémi Verschelde2016-06-231-15/+8
| | | | | | | | | | | | And boo @reduz, those trailing spaces :p
* | | Merge pull request #5338 from J08nY/array-bindingsRémi Verschelde2016-06-231-7/+42
|\ \ \ | | | | | | | | *Array bindings
| * | | *Array: added bindings for other DVector methodsJ08nY2016-06-221-7/+42
| | | | | | | | | | | | | | | | | | | | | | | | - affects {RAW,INT,REAL,STRING,VECTOR2,VECTOR3,COLOR}_ARRAY - adds bindings for append(),append_array(),remove(),insert() - broadens #4245
* | | | Improved binding system (ObjectTypeDB::bind_method) to be friendlier to ↵Juan Linietsky2016-06-228-5/+492
|/ / / | | | | | | | | | | | | | | | statically typed languages, should help in the Mono integration. Disabled by default.
* | | Merge pull request #5333 from J08nY/signal-list-fixRémi Verschelde2016-06-221-8/+10
|\ \ \ | | | | | | | | Object: get_signal_connection_list fixed
| * | | Object: get_signal_connection_list fixedJ08nY2016-06-211-8/+10
| | | | | | | | | | | | | | | | | | | | now returns only the connections for the signal argument, as specified fixes #5329
* | | | Fixed error using the same atlas rect for all images, closes #4139Juan Linietsky2016-06-211-0/+4
| | | |
* | | | Better support in ScriptLanguage for GC based scriptsJuan Linietsky2016-06-212-2/+15
| |/ / |/| |
* | | Set default duration parameter of joystick vibration to 0.Andreas Haas2016-06-212-2/+2
| | |
* | | Merge pull request #5325 from vnen/doc-fileRémi Verschelde2016-06-211-0/+7
|\ \ \ | |/ / |/| | Add class reference for File class
| * | Fix File.get_as_text() to return the whole fileGeorge Marques2016-06-211-0/+7
| | | | | | | | | | | | It was returning only from the cursor forward.
* | | fix CanvasItem.get_global_transform() and CanvasItem.get_local_transform(), ↵Juan Linietsky2016-06-201-1/+1
| | | | | | | | | | | | closes #4075
* | | fix bug decompressing bc texture, closes #4404Juan Linietsky2016-06-201-2/+17
| | |
* | | Add quotes to .tscn keys, solves #4366Juan Linietsky2016-06-201-1/+14
| | |
* | | added missing status, closes #4361Juan Linietsky2016-06-201-0/+1
|/ /
* | Merge pull request #5196 from vnen/similarity-code-completionRémi Verschelde2016-06-203-0/+50
|\ \ | | | | | | Improve code completion search
| * | Add similarity comparison to StringGeorge Marques2016-06-193-0/+50
| | | | | | | | | | | | | | | Uses the Sorensen-Dice coefficient to calculate similarity. This also adds String.bigrams() as a convenience function needed by the comparison.
* | | Property reporty base type when a function fails, fixes #4581 probably also ↵Juan Linietsky2016-06-202-5/+13
|/ / | | | | | | closes other issues
* | Merge pull request #5283 from djrm/remove_printsRémi Verschelde2016-06-191-3/+0
|\ \ | | | | | | Removed lots of prints
| * | Removed lots of printsDaniel J. Ramirez2016-06-181-3/+0
| | |
* | | Merge pull request #5281 from J08nY/useless-preprocessorRémi Verschelde2016-06-194-25/+5
|\ \ \ | | | | | | | | Fix #5263: Useless preprocessor condition
| * | | Remove USE_QUAD_VECTORS unused checkJ08nY2016-06-192-17/+0
| | | |
| * | | Remove CHARTYPE_16BITS unused checksJ08nY2016-06-193-8/+5
| | | | | | | | | | | | | | | | fix #5263
* | | | -Added trigger mode to tracks, useful for properties that work as triggers, ↵Juan Linietsky2016-06-191-0/+1
| |/ / |/| | | | | | | | | | | | | | such as playing a sample, an animation, etc. -Better interpolation of discrete tracks, fixes #4417
* | | corrently parse utf8 from zip_io open, closes #1708Juan Linietsky2016-06-181-2/+5
|/ / | | | | | | this probably failed when exporting or opening android apk files too, should fix that too.
* | Drop fully commented-out filesRémi Verschelde2016-06-182-153/+0
| | | | | | | | Part of #5272
* | Drop empty .cpp files for header-only classesRémi Verschelde2016-06-184-117/+0
| | | | | | | | Part of #5272
* | Drop empty files that are not used anywhereRémi Verschelde2016-06-188-265/+0
| | | | | | | | Part of #5272
* | -Changed how Dir works so it's more user friendly, closes #4705Juan Linietsky2016-06-181-1/+36
| |
* | -made get_space_left() return values more homogenous, also for script, ↵Juan Linietsky2016-06-181-1/+1
| | | | | | | | converted to mb, closes #4617
* | Fixed make_dir and make_dir_recursive erros, closes #1680 closes #1872Juan Linietsky2016-06-183-105/+37
| |
* | Add missing license headers in our source files (#5255)Rémi Verschelde2016-06-1815-2/+393
| | | | | | Also removes a couple wrong Godot headers from third-party source files.
* | Merge pull request #5250 from bojidar-bg/add-sha256Juan Linietsky2016-06-1710-7/+366
|\ \ | | | | | | Add sha256 to String and File/FileAccess.
| * | Add sha256 to String and File/FileAccess.Bojidar Marinov2016-06-1710-7/+366
| | | | | | | | | | | | Probably does #4166
* | | -added missing .inc filesJuan Linietsky2016-06-171-0/+1
| | | | | | | | | | | | | | | | | | -Made it possible to change the editor theme -Added two options to theme editor plugin to create empty template themes and editor themes -Make sure that saved themes to .tres keep the null theme fields, to make it easier to keep those when saving/loading the theme
* | | Fixed PacketPeer.get_var() return type in docsJ08nY2016-06-161-1/+1
|/ /
* | Classref: Added docs for StreamPeer* (#5216)J08nY2016-06-151-1/+0
| |
* | Merge pull request #5192 from J08nY/issue-5190Rémi Verschelde2016-06-151-3/+3
|\ \ | | | | | | Dictionary: rename param in .has() .has_all() .erase()
| * | Dictionary: rename param in .has() .has_all() .erase()J08nY2016-06-131-3/+3
| | | | | | | | | | | | fixes #5190, param should be named key, not value
* | | Merge pull request #5210 from J08nY/issue-5189Rémi Verschelde2016-06-151-1/+1
|\ \ \ | | | | | | | | String documentation: .ord_at() returns int not String
| * | | String documentation: .ord_at() returns int not StringJ08nY2016-06-141-1/+1
| | | | | | | | | | | | | | | | fixes #5189
* | | | Add joystick vibration support on Linux (#5043)Wilhem Barbier2016-06-152-0/+9
|/ / /
* | | Merge pull request #5179 from RandomShaper/better-android-exportJuan Linietsky2016-06-131-4/+13
|\ \ \ | |/ / |/| | Enhanced Android export
| * | Zip-align exported APKPedro J. Estébanez2016-06-131-4/+13
| | |
* | | Merge pull request #5177 from vnen/string-subsequenceJuan Linietsky2016-06-133-0/+51
|\ \ \ | | | | | | | | Add subsequence search to tools
| * | | Add 'is_subsequence_of' function to StringGeorge Marques2016-06-123-0/+51
| | | |
* | | | Changed reload logic to auto-hard-reload scripts on save. It's simpler to ↵Juan Linietsky2016-06-133-2/+17
| | | | | | | | | | | | | | | | use and also fixes #4756
* | | | -Avoid negative zero from being saved to config files o resource files, ↵Juan Linietsky2016-06-131-16/+23
| | | | | | | | | | | | | | | | fixes #4758