summaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
2018-02-24change to clang formatNeil Graham
2018-02-21add Image::bumpmap_to_normalmap conversion functionNeil Graham
2018-02-19Merge pull request #15563 from poke1024/gdscript-shuffleRémi Verschelde
Add shuffle() method to Array
2018-02-19Merge pull request #15852 from poke1024/color_hsvRémi Verschelde
Add Color.from_hsv()
2018-02-19Improve error reporting of ProjectSettings::setup()Rémi Verschelde
And use it to better report errors in the console and project manager when a project.godot file is corrupted. Fixes #14963.
2018-02-17Clean up some bad words from code commentsArtem Varaksa
2018-02-14Add locale renames for Hebrew and Indonesian on WindowsRémi Verschelde
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.
2018-02-14Merge pull request #15564 from RandomShaper/adpod-topmostRémi Verschelde
Add new window setting: always on top
2018-02-14Merge pull request #15892 from Zylann/add_missing_vs_bindingsRémi Verschelde
Added all missing VisualServer bindings
2018-02-14Merge pull request #16169 from hungrymonkey/issue_16160Rémi Verschelde
Change function signature from float to double to match type get_doub…
2018-02-14Add mbedtls moduleFabio Alessandrelli
2018-02-12Added OS::center_window to center the window precisely on desktop platformsMarcelo Fernandez
2018-02-07Merge pull request #15899 from karroffel/stringbuffer-template-argRémi Verschelde
add template argument for size in StringBuffer
2018-02-05Fix polygon triangulation failure.Nicolas Silva
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.
2018-02-05Kill an old debugging messageHein-Pieter van Braam
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.
2018-02-03Fix broken variant call of Vector3.snappedTimur Celik
2018-02-01Fix inconsistencies and typos in argument namesPaolo Perkovic
2018-02-01Merge pull request #16002 from bruvzg/mono_loading_form_resRémi Verschelde
[Mono] Allow loading assemblies (including mscorlib) from resources.
2018-01-31Merge pull request #16188 from Schweigert/masterRémi Verschelde
Display set_nodelay to GDScript
2018-01-31Mono: Allow loading `mscorlib` from resources.bruvzg
2018-01-30Display set_nodelay to GDScriptMarlon Henry Schweigert
Pass enabled arg Rename set_nodelay to set_no_delay Add description to the method Change description
2018-01-30Merge pull request #15995 from GodotExplorer/pr-debugger-weakrefRémi Verschelde
Remote debugger send the real instance of WeakRef referenced to
2018-01-30Fix wrong return type of xform functionsPoommetee Ketson
2018-01-29Change function signature from float to double to match type ↵hungrymonkey
get_doubleCloses #16160
2018-01-27Use the appropriate Variant hash and compare functions for DictionariesHein-Pieter van Braam
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
2018-01-24- Improves portability in joystick buttons enumAriel Manzur
- Fixes linking bug in modules split library
2018-01-24Merge pull request #15844 from letheed/better-error-msgRémi Verschelde
Make cyclic resource inclusion error message more helpful
2018-01-23Remote debugger send the real instance of WeakRef referenced toGeequlim
2018-01-20add template argument for size in StringBufferkarroffel
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.
2018-01-20Added all missing VisualServer bindingsMarc Gilleron
- 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
2018-01-20fixed crash with StringBuilderkarroffel
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.
2018-01-18improves portability with some compilersAriel Manzur
2018-01-18Add Color.from_hsv()Bernhard Liebl
2018-01-18Fix typos in code and docs with codespellRémi Verschelde
Using v1.11.0 from https://github.com/lucasdemarchi/codespell
2018-01-18Make cyclic resource inclusion error message more helpfulletheed
2018-01-17doc: Replace some more "val" with "value" + syncRémi Verschelde
2018-01-16Revert "Fix bad color to HTML conversion. Alpha channel was added before RGB."Rémi Verschelde
2018-01-15Filled tutorial field in most relevent classes.Juan Linietsky
Added tutorial display in doc.
2018-01-15Make sure PropertyHint matches in the VisualScript editor.K. S. Ernest (iFire) Lee
2018-01-13Fix String::itos/String::num_int64(INT64_MIN) output.bruvzg
2018-01-12get_target_fps and set_target_fps now both use an intPaul Joannon
2018-01-12fix set_stream_peer binding in PacketPeerPaul Joannon
2018-01-12Merge pull request #15611 from bojidar-bg/x-bind-more-propertiesRémi Verschelde
Bind many more properties to scripts
2018-01-12-Remove color operator clamping, which is unnecesary. Fixes #15184, fixes ↵Juan Linietsky
#14686. -Refresh progress bar less often, makes baking, exporting, etc. faster.
2018-01-12Bind many more properties to scriptsBojidar Marinov
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
2018-01-11Merge pull request #15531 from AndreaCatania/p2Juan Linietsky
Fixed crash on duplicate GIProbe baking
2018-01-11Fixed crash on duplicate GIProbe bakingAndreaCatania
2018-01-11Dont print error when loading resource from cacheRuslan Mustakov
2018-01-10Add shuffle() method to Arraypoke1024
2018-01-09Fix bad color to HTML conversion. Alpha channel was added befor RGB.robfram