summaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2018-09-07Update bullet to Master 12409f1118a7c7a266f9071350c70789dfe73bb9Andrea Catania
2018-09-05Merge pull request #21771 from WiggleWizard/get-stack-fixRémi Verschelde
Fixed return type for get_stack() function call
2018-09-05Fixed bullet area vs Trimesh shape overlapAndrea Catania
2018-09-05Fixed return type for get_stack() function callWiggleWizard
2018-09-04Fix invalid deref in NativeScript script classesWill Nations
2018-08-31Merge pull request #21605 from Faless/ws_no_protoMax Hilbrunner
Allow WebSocket connect with no sub-protocols.
2018-08-30Allow WebSocket connect with no sub-protocols.Fabio Alessandrelli
2018-08-30[NativeScript] implement refcount instance binding funcsThomas Herzog
2018-08-30[GDNative] add initial core 1.1 extensionThomas Herzog
2018-08-30Merge pull request #21575 from YeldhamDev/gridmap_deprecated_fixRémi Verschelde
Small change on how GridMap's "theme" is deprecated
2018-08-29doc: Sync classref with current sourceRémi Verschelde
2018-08-29Small change on how GridMap's "theme" is deprecatedMichael Alexsander Silva Dias
2018-08-29Fixed crash if convex has 0 verticesAndrea Catania
2018-08-29Merge pull request #21538 from jmf/masterRémi Verschelde
Fix CSGBox size
2018-08-29Initialise rays_found count in test_ray_separation.Ibrahn Sahir
Prevents branch on uninit that could result in crashes with move_and_slide.
2018-08-29Fix vformat(), minor typos and word puzzlesYuri Chornoivan
2018-08-28Fix to make CSGBox the size that is entered in Width, Height and Depth ↵jmf
instead of twice those lengths.
2018-08-28Merge pull request #21511 from eska014/webm-nomtRémi Verschelde
Fix WebM and Theora video in HTML5 export
2018-08-27Merge pull request #21497 from neikeq/hmIgnacio Etcheverry
C# generated classes ignore warning CS1591 and cleanup
2018-08-27C# generated classes ignore warning CS1591 and cleanupIgnacio Etcheverry
2018-08-27Merge pull request #21420 from elasota/fix-last-mipmapRémi Verschelde
Fix uninitialized mipmap levels
2018-08-27Merge pull request #21449 from vnen/gdscript-builtin-isRémi Verschelde
Allow `is` operator to test built-in types
2018-08-27Merge pull request #21369 from Noshyaar/exportflagRémi Verschelde
Deprecating bit flags export with no hint text
2018-08-27Merge pull request #21205 from KellyThomas/c-sharp-feature-parity-quatIgnacio Etcheverry
[Mono] Quat - add some missing constructors and methods
2018-08-27Merge pull request #21450 from vnen/gdscript-type-spaceRémi Verschelde
Remove space before colon on type hints
2018-08-27Merge pull request #21469 from akien-mga/glsl-clang-formatRémi Verschelde
Style: Enable clang-format on GLSL shaders
2018-08-27Fix build after c2a9cb34Rémi Verschelde
`return` statements were missing, and those warnings do not need to be behind #ifdefs, they do not expose any deprecated API.
2018-08-27Merge pull request #21470 from elasota/fix-tiled-exrRémi Verschelde
Fix tiled EXR import
2018-08-27Fix tiled EXR crash, update tinyexr to head to fix corrupted uncompressed ↵elasota
EXR loading
2018-08-27Merge pull request #21433 from AndreaCatania/megafixRémi Verschelde
Multiple fixes on Physics things
2018-08-27Style: Enable clang-format on GLSL shadersRémi Verschelde
As of clang-format 6.0.1, putting the `/* clang-format off */` hint around our "invalid" `[vertex]` and `[shader]` statements isn't enough to prevent a bogus indent of the next comments and first valid statement, so we need to enclose that first valid statement in the unformatted chunk.
2018-08-27Fix WebM module for HTML5 platformLeon Krause
2018-08-26Merge pull request #21423 from exts/mono/collectionsIgnacio Etcheverry
[Mono] Added Collections namespace to Array & Dictionary
2018-08-26GDScript: Remove space before colon on type hintsGeorge Marques
2018-08-26GDScript: Allow `is` operator to test built-in typesGeorge Marques
2018-08-26Correctly set safe_motion on cast_motion query Fixes: #21212Andrea Catania
2018-08-26Added deprecated to joints un/used parametersAndrea Catania
2018-08-26Fixes several resource leaks in ...Crazy-P
- gdscript - gdscript_compiler - regex - android/export - gles3/rasterizer (scene and storage)
2018-08-25Added Collections namespace to Array & Dictionaryexts
2018-08-25Fix mipmap levels not being initializedelasota
2018-08-25Merge pull request #16927 from neikeq/rework-refcount-notifyJuan Linietsky
Notify instance binding data api of refcount increment/decrement
2018-08-24Merge pull request #21049 from AndreaCatania/jointsRémi Verschelde
Improved 6DOF joint implementation
2018-08-24Merge pull request #20717 from PJB3005/18-08-04-godot-exceptionsIgnacio Etcheverry
Fix Mono exception handling.
2018-08-24Merge pull request #20707 from aaronfranke/mono-combineIgnacio Etcheverry
[Mono] Move several related small files
2018-08-24Deprecating bit flags export with no hint textPoommetee Ketson
2018-08-24Make some debug prints verbose-only, remove othersRémi Verschelde
2018-08-24Add print_verbose to print to stdout only in verbose modeRémi Verschelde
Equivalent of the cumbersome: if (OS::get_singleton()->is_stdout_verbose()) print_line(msg);
2018-08-24mono: Quat - add some missing constructors and methodsKelly Thomas
2018-08-23Fix Mono exception handling.Pieter-Jan Briers
First of all, this fixes the handling of exceptions so the engine actually notices them, it was broken in 4172fa03b56bb60fe096639585e0ca40df73b677. Next, unhandled exceptions now do NOT cause an abort(). They're logged now, so before #16987. The pending exception thing still works though.
2018-08-23[Mono] Move several small related filesAaron Franke