summaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2017-12-20Fix gridmap disappearing after editing after bake, closes #14868Juan Linietsky
2017-12-19Fix fatal mono logs not getting logged to disk.PJB3005
They aborted the application without flushing the log file. Also there was a typo.
2017-12-19-Fix some crashes in unwrapperJuan Linietsky
-Add emission lighting to raytrace mode, fixes #14686
2017-12-19Should no longer crash after rebaking, may be a solution to #14795Juan Linietsky
Not sure if this is the same problem, as reported, please test.
2017-12-18Add plugin to edit GDNativeLibrarygeequlim
Rename GDNativeLibraryEditor to GDNativeLibrarySingletonEditor
2017-12-18doc: Sync classref with current sourceRémi Verschelde
2017-12-18Added baked light support for gridmaps.Juan Linietsky
2017-12-17Merge pull request #14788 from mrcdk/ogg_pop_noise_fixRémi Verschelde
Fix ogg looping pop noise. Closes #11468
2017-12-17Merge pull request #14754 from willnationsdev/dictionary-copyRémi Verschelde
Added 'duplicate' function for Dictionary in C++ and API.
2017-12-17Dictionary::copy -> ::duplicateWill Nations
2017-12-17Fix ogg looping pop noise. Closes #11468MrCdK
2017-12-17Now every variant type has its icon.Daniel J. Ramirez
2017-12-17General use Variant type icons, plus other icon updates.Daniel J. Ramirez
2017-12-17Cleanup some #if 0'd codeRémi Verschelde
2017-12-16Merge pull request #12845 from remorse107/Array-Dictionary-FixRémi Verschelde
Fix issue #11400. Fixes issue with arrays and dictionary acting as static objects between different instances of objects.
2017-12-16Remove get_stack_bottomRuslan Mustakov
It's not used in godot-nim any longer and there were no other uses for it.
2017-12-16Merge pull request #14676 from NathanWarden/nav_create_to_addRémi Verschelde
Renamed navmesh_create to navmesh_add since no navmesh is created.
2017-12-16Merge pull request #14708 from Faless/get_packet_not_const_rebasedRémi Verschelde
Remove "const" from PacketPeer get_packet/get_var, move windows network related stuff to drivers
2017-12-15Made built-in identifiers properly constant in shaders. Fixes #14449, closes ↵Juan Linietsky
#14629
2017-12-15Renamed navmesh/poly_create to navmesh/poly_add since no navmesh is created.Nathan Warden
2017-12-15Remove "const" from PacketPeer get_packet/get_varFabio Alessandrelli
They are NOT constant methods, as state by the comment message, they fetch the last packet and then forget about it, actively changing the state of the object.
2017-12-15Merge pull request #14679 from ↵Thomas Herzog
touilleMan/add-godot_get_global_constants-to-gdnative-wrapper [GDnative] missing godot_get_stack_bottom and godot_get_global_constants
2017-12-15Fixes thekla atlas mingw-w64 buildbruvzg
2017-12-15Add missing godot_get_stack_bottom and godot_get_global_constants in ↵Emmanuel Leblond
gdnative_api.json
2017-12-14GDScript files are converted to binary on export now.Juan Linietsky
2017-12-14-Add lightmapperJuan Linietsky
-Fixes to unwrapper (remove degenerates), makes Thekla not crash -Added optional cancel button in EditorProgress -Added function to force processing of events (needed for cancel button)
2017-12-13Merge pull request #14626 from Hinsbart/module_envRémi Verschelde
Scons: Build modules in seperate env.
2017-12-13Scons: Build modules in seperate env.Andreas Haas
2017-12-13Merge pull request #14587 from hoelzl/pr-no-std-arg-on-msvcRémi Verschelde
Don't pass -std=gnu++11 to MSVC
2017-12-13Merge pull request #14591 from mhilbrunner/patch-6Rémi Verschelde
Small fix in stream_peer_openssl: missing break, formatting
2017-12-13Merge pull request #14593 from Hinsbart/mono_envRémi Verschelde
Mono: Build in cloned env.
2017-12-12Change -std=gnu++11 to -stc=c++11 and don't pass flag to MSVCMatthias Hoelzl
2017-12-12Fix mingw build for thekla_atlasHein-Pieter van Braam
2017-12-12Mono: Build in cloned env.Andreas Haas
Use a cloned env, so that toggling glue_enabled doesn't force a full rebuild as mentioned in #14584.
2017-12-12stream_peer_openssl: add missing break & formatMax Hilbrunner
2017-12-12Merge pull request #14555 from bojidar-bg/14324-nested-ternaryRémi Verschelde
Properly support nested ternary expressions
2017-12-12Merge pull request #14561 from volzhs/libwebp-0.6.1Rémi Verschelde
Update libwebp to 0.6.1
2017-12-12Update libwebp to 0.6.1volzhs
* lossless performance and compression improvements + a new 'cruncher' mode (-m 6 -q 100) * ARM performance improvements with clang (15-20% w/ndk r15c) * webp-js: emscripten/webassembly based javascript decoder * miscellaneous bug & build fixes
2017-12-11Properly support nested ternary expressionsBojidar Marinov
Fixes 14324.
2017-12-11Merge pull request #13836 from AndreaCatania/scaleRémi Verschelde
Fixed bullet scale on get_transform and joints
2017-12-11Merge pull request #14516 from AndreaCatania/patch-2Rémi Verschelde
Implemented physics linear and angular lock
2017-12-10Implemented physics linear and angular lockAndreaCatania
2017-12-10Ray cast return shape id. Fixes #14473AndreaCatania
2017-12-10Style: Re-apply clang-format over recent invalid additionsRémi Verschelde
2017-12-09Fix missing parenthesisRémi Verschelde
2017-12-09GDNative: Fix warning when gdnative/singletons is missingRémi Verschelde
2017-12-09Changed how 6DOF limits worksAndreaCatania
2017-12-09Merge pull request #14459 from vnen/gdscript-object-exportRémi Verschelde
Make GDScript parser raise error when exporting Object
2017-12-09Make GDScript parser raise error when exporting ObjectGeorge Marques
2017-12-09-Ability to and unwrap lightmap coordinates on importJuan Linietsky
-Added unwrap functionality to Mesh -Ability to display and debug mesh UVs -Added multiline draw, so it's easier and faster to draw UVs -Many fixes to SurfaceTool -Fixes to Thekla Unwrap, but it's a piece of ass and it keeps crashing. Will have to go away