aboutsummaryrefslogtreecommitdiff
path: root/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | Add Color.from_hsv()Bernhard Liebl2018-01-183-0/+52
| | | | | | |
* | | | | | | Improve error reporting of ProjectSettings::setup()Rémi Verschelde2018-02-192-27/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | And use it to better report errors in the console and project manager when a project.godot file is corrupted. Fixes #14963.
* | | | | | | Clean up some bad words from code commentsArtem Varaksa2018-02-172-3/+1
| | | | | | |
* | | | | | | Add locale renames for Hebrew and Indonesian on WindowsRémi Verschelde2018-02-141-1/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Windows does not fully respect ISO 639-1 like other systems, so we have to override its locale values for those languages. Also added comments to document the locale provenance.
* | | | | | | Merge pull request #15564 from RandomShaper/adpod-topmostRémi Verschelde2018-02-143-1/+17
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Add new window setting: always on top
| * | | | | | | Add new window setting: always on topPedro J. Estébanez2018-01-053-1/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implemented for Windows and Linux.
* | | | | | | | Merge pull request #15892 from Zylann/add_missing_vs_bindingsRémi Verschelde2018-02-143-1/+44
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Added all missing VisualServer bindings
| * | | | | | | | Added all missing VisualServer bindingsMarc Gilleron2018-01-203-1/+44
| | |_|_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Added bindings for multimesh, immediate, skeleton, light, reflection probe, gi probe, lightmap, particles, camera, environment, scenario, instance - Removed draw and sync, were duplicates of force_* equivalents - Bumped binders max arguments from 11 to 13 - Wrote some wrappers as not all methods were variant-friendly
* | | | | | | | Merge pull request #16169 from hungrymonkey/issue_16160Rémi Verschelde2018-02-142-2/+2
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Change function signature from float to double to match type get_doub…
| * | | | | | | | Change function signature from float to double to match type ↵hungrymonkey2018-01-292-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | get_doubleCloses #16160
* | | | | | | | | Add mbedtls moduleFabio Alessandrelli2018-02-142-0/+2
| | | | | | | | |
* | | | | | | | | Added OS::center_window to center the window precisely on desktop platformsMarcelo Fernandez2018-02-124-0/+26
| |_|_|_|_|/ / / |/| | | | | | |
* | | | | | | | Merge pull request #15899 from karroffel/stringbuffer-template-argRémi Verschelde2018-02-073-107/+84
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | add template argument for size in StringBuffer
| * | | | | | | | add template argument for size in StringBufferkarroffel2018-01-203-107/+84
| | |/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Until now the pre-allocated array size was defined to be 64 without a way of adjusting it from the calling side. This commit adds the size as a template parameter.
* | | | | | | | Fix polygon triangulation failure.Nicolas Silva2018-02-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The ear clipping algorithm used to triangulate polygons has a slightly too conservative point-in-triangle test which can, in some configurations prevent it from finding a possible tessellation. Relaxing the test by considering that points exactly on edges don't belong the triangle fixes the issue. Changing the semantic of the test is safe because no other code makes use of it. A more detailed explanation can be found in issue #16395. Fixes #16395.
* | | | | | | | Kill an old debugging messageHein-Pieter van Braam2018-02-051-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When running the engine with -d we get a message on the command-line for each control being clicked. After discussing with @reduz it seems that this is old and should be removed. Commented out as requested.
* | | | | | | | Fix broken variant call of Vector3.snappedTimur Celik2018-02-031-1/+1
| | | | | | | |
* | | | | | | | Fix inconsistencies and typos in argument namesPaolo Perkovic2018-02-011-4/+4
| | | | | | | |
* | | | | | | | Merge pull request #16002 from bruvzg/mono_loading_form_resRémi Verschelde2018-02-011-0/+3
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | [Mono] Allow loading assemblies (including mscorlib) from resources.
| * | | | | | | | Mono: Allow loading `mscorlib` from resources.bruvzg2018-01-311-0/+3
| | | | | | | | |
* | | | | | | | | Merge pull request #16188 from Schweigert/masterRémi Verschelde2018-01-313-2/+3
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | Display set_nodelay to GDScript
| * | | | | | | | Display set_nodelay to GDScriptMarlon Henry Schweigert2018-01-303-2/+3
| | |/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Pass enabled arg Rename set_nodelay to set_no_delay Add description to the method Change description
* | | | | | | | Merge pull request #15995 from GodotExplorer/pr-debugger-weakrefRémi Verschelde2018-01-301-1/+7
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Remote debugger send the real instance of WeakRef referenced to
| * | | | | | | | Remote debugger send the real instance of WeakRef referenced toGeequlim2018-01-231-1/+7
| | |/ / / / / / | |/| | | | | |
* | | | | | | | Fix wrong return type of xform functionsPoommetee Ketson2018-01-301-4/+4
| |/ / / / / / |/| | | | | |
* | | | | | | Use the appropriate Variant hash and compare functions for DictionariesHein-Pieter van Braam2018-01-271-13/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Dictionaires did not use the VariantHasher and VariantComparator making them unsafe for use with NaN values as keys. This PR uses the appropriate Variant implementations for these functions. var d = {} d[Vector2(NAN, NAN)] = 0 d[Vector2(NAN, NAN)] = 0 print(d.size()) will now output '1' and not '2' This fixes #16031
* | | | | | | - Improves portability in joystick buttons enumAriel Manzur2018-01-241-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Fixes linking bug in modules split library
* | | | | | | Merge pull request #15844 from letheed/better-error-msgRémi Verschelde2018-01-241-1/+1
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | Make cyclic resource inclusion error message more helpful
| * | | | | | Make cyclic resource inclusion error message more helpfulletheed2018-01-181-1/+1
| | |/ / / / | |/| | | |
* | | | | | fixed crash with StringBuilderkarroffel2018-01-201-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When using a newly created StringBuilder then the as_string() method will crash when trying to free an allocated 0-sized chunk of memory. When 0 bytes get allocated with memnew_arr then a NULL pointer gets returned. When trying to free that pointer the programm will crash.
* | | | | | improves portability with some compilersAriel Manzur2018-01-181-1/+1
| | | | | |
* | | | | | Fix typos in code and docs with codespellRémi Verschelde2018-01-1810-16/+16
|/ / / / / | | | | | | | | | | | | | | | Using v1.11.0 from https://github.com/lucasdemarchi/codespell
* | | | | doc: Replace some more "val" with "value" + syncRémi Verschelde2018-01-171-13/+12
| | | | |
* | | | | Revert "Fix bad color to HTML conversion. Alpha channel was added before RGB."Rémi Verschelde2018-01-161-1/+1
| | | | |
* | | | | Filled tutorial field in most relevent classes.Juan Linietsky2018-01-151-0/+3
| | | | | | | | | | | | | | | | | | | | Added tutorial display in doc.
* | | | | Make sure PropertyHint matches in the VisualScript editor.K. S. Ernest (iFire) Lee2018-01-151-0/+1
| | | | |
* | | | | Fix String::itos/String::num_int64(INT64_MIN) output.bruvzg2018-01-131-4/+3
| | | | |
* | | | | get_target_fps and set_target_fps now both use an intPaul Joannon2018-01-122-2/+2
| | | | |
* | | | | fix set_stream_peer binding in PacketPeerPaul Joannon2018-01-121-1/+1
| | | | |
* | | | | Merge pull request #15611 from bojidar-bg/x-bind-more-propertiesRémi Verschelde2018-01-1211-4/+55
|\ \ \ \ \ | | | | | | | | | | | | Bind many more properties to scripts
| * | | | | Bind many more properties to scriptsBojidar Marinov2018-01-1211-4/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Notable potentially breaking changes: - PROPERTY_USAGE_NOEDITOR is now PROPERTY_USAGE_STORAGE | PROPERTY_USAGE_NETWORK, without PROPERTY_USAGE_INTERNAL - Some properties were renamed, and sometimes even shadowed by new ones - New getter methods (some virtual) were added
* | | | | | -Remove color operator clamping, which is unnecesary. Fixes #15184, fixes ↵Juan Linietsky2018-01-122-60/+59
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | #14686. -Refresh progress bar less often, makes baking, exporting, etc. faster.
* | | | | Merge pull request #15531 from AndreaCatania/p2Juan Linietsky2018-01-111-0/+1
|\ \ \ \ \ | | | | | | | | | | | | Fixed crash on duplicate GIProbe baking
| * | | | | Fixed crash on duplicate GIProbe bakingAndreaCatania2018-01-111-0/+1
| | | | | |
* | | | | | Dont print error when loading resource from cacheRuslan Mustakov2018-01-111-1/+2
| |_|/ / / |/| | | |
* | | | | Fix bad color to HTML conversion. Alpha channel was added befor RGB.robfram2018-01-091-1/+1
| | | | |
* | | | | Mono: Implement stack info for errors and exceptionsIgnacio Etcheverry2018-01-095-43/+51
|/ / / /
* | | | obsolete UndoRedo max_steps; no users identifiedTodd Ross2018-01-082-24/+0
| | | |
* | | | Merge pull request #15337 from ↵Rémi Verschelde2018-01-081-0/+6
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | touilleMan/fix-classdb_get_method_list-without-instrospection Fix _ClassDB::get_method_list when instrospection is disabled
| * | | | Fix _ClassDB::get_method_list to returns only what's available when ↵Emmanuel Leblond2018-01-041-0/+6
| | | | | | | | | | | | | | | | | | | | introspection is disabled