summaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
2018-07-03Ensure, if a texture meant for a normal map is imported and size limit ↵Juan Linietsky
exists, that it's renormalized after resize.
2018-07-03Merge pull request #19802 from matthew1006/custom-feature-tag-fixMax Hilbrunner
Fixed project settings overrides not using custom feature tags.
2018-07-03Merge pull request #19819 from MetaSaval/masterMax Hilbrunner
Change the neighbours vector to a set in AStar
2018-07-03Hacked around duplication bug. I think duplicate needs to be even smarter, ↵Juan Linietsky
maybe pass two bools? (containers and/or resources)
2018-07-02Added ability for SSAO to affect AO textures tooJuan Linietsky
2018-07-02-Fixes to how hashing happened, now StringName and NodePath use default ↵Juan Linietsky
hasher, this was leading to some severe slowdown in scenarios -Fixes to some duplication scenarios for instanced scenes
2018-06-30-Fixes to OBJ importer, option to disable optimizationJuan Linietsky
-Fixes to script language, PlaceHolder can now get and check methods
2018-06-27Change the neighbours vector to a set in AStarDanny
This fixes an issue where one could not disconnect two points that were connected more than once.
2018-06-27Changes to how node paths are selected from property, allowing setting a hint.Juan Linietsky
2018-06-27Fixed project settings overrides not using custom feature tags.matthew1006
2018-06-25State machine animation nodeJuan Linietsky
2018-06-25Merge pull request #19193 from tagcup/quat_normJuan Linietsky
Fixed Basis -> Quat conversions, added a few safety checks.
2018-06-22Merge pull request #19695 from rraallvv/nocache_gen_masterRémi Verschelde
Add NoCache wrapper to Command (master)
2018-06-21Added auto triangle generation in blend space, using Delaunay.Juan Linietsky
2018-06-21Remove error messagesJuan Linietsky
2018-06-21add NoCache wrapper to CommandRhody Lugo
2018-06-19Fixed float Color conversions to int typesMax
2018-06-18-Added AnimationGraphPlayer (still missing features)Juan Linietsky
-Added ability to edit resources from built-in inspector (wip, needs testing and feedback)
2018-06-18Expose OS.get_ticks_usec()Marc Gilleron
2018-06-13Merge pull request #19487 from JFonS/better_3d_selectRémi Verschelde
Improve 3D selection
2018-06-13Polished 3D selectionJFonS
2018-06-13Merge pull request #19509 from SaracenOne/imeRémi Verschelde
IME context detection.
2018-06-12Fixed regression making the logger not respect the max files limit.Michael Alexsander Silva Dias
2018-06-11IME context detection.Saracen
2018-06-07Added functions to get trimesh infoAndrea Catania
2018-05-31Merge pull request #19263 from vnen/fix-get-returnRémi Verschelde
Fix return type of _get() virtual method
2018-05-31Style: Apply clang-format (5.0) to some missed filesRémi Verschelde
2018-05-30Merge pull request #19278 from karroffel/image-rgbe-srgbJuan Linietsky
added rgbe_to_srgb method to Image
2018-05-30added rgbe_to_srgb method to Imagekarroffel
2018-05-30Don't add a period to a log file name if it has no extension.Michael Alexsander Silva Dias
2018-05-30Merge pull request #19266 from akien-mga/os-execute-docMax Hilbrunner
Improve return value and docs on OS.execute regarding blocking/non-blocking variants
2018-05-30Improve return value of OS.execute in blocking/non-blocking variantsRémi Verschelde
Initialized the PID to -2, which will be the value returns in blocking- mode where the PID is not available. (-1 was already taken to signify an execution failure). OS::execute will now properly return a non-OK error code when it fails to execute the target file. The documentation was rewritten to be very clear about the differences between blocking and non-blocking mode. Fixes #19056.
2018-05-29Fix return type of _get() virtual methodGeorge Marques
2018-05-29New sync RPC modes to match all combinationsFabio Alessandrelli
2018-05-29Refactor RPCMode enum and checksFabio Alessandrelli
2018-05-29Revert "RPCMode refactor, more sync modes"Max Hilbrunner
2018-05-29Merge pull request #19021 from Faless/rpc_sync_fixMax Hilbrunner
RPCMode refactor, more sync modes
2018-05-28Sync classref with current sourceRémi Verschelde
Also fix binding of Basis.slerp
2018-05-28Revert "Make the performance reporting update frequency customizable"Juan Linietsky
2018-05-28Merge pull request #19213 from bit-shift-io/masterRémi Verschelde
Fix for not picking up locale of some .po translation files
2018-05-28Merge pull request #18410 from GodotExplorer/debugger-inherited-variablesRémi Verschelde
Add inherited variables support for script debugger
2018-05-28Merge pull request #18899 from ibrahn/gdscript-license-infoRémi Verschelde
GDScript access to copyright, license, author and donor information.
2018-05-28Fix for not picking up locale of some .po translation filesFabian
2018-05-27Fixed Basis -> Quat conversions, added a few safety checks.tagcup
Fixes #19027.
2018-05-26Merge pull request #18279 from RandomShaper/allow-naive-httpMax Hilbrunner
Allow body-up-to-EOF HTTP responses
2018-05-26Merge pull request #18998 from Calinou/customizable-performance-reporting-rateMax Hilbrunner
Make the performance reporting update frequency customizable
2018-05-26New sync RPC modes to match all combinationsFabio Alessandrelli
2018-05-26Refactor RPCMode enum and checksFabio Alessandrelli
2018-05-23Merge pull request #14715 from Krakean/string_add_rsplit2Max Hilbrunner
Added rsplit() method to String class
2018-05-22Allow body-up-to-EOF HTTP responsesPedro J. Estébanez
Implements the same heuristic as Curl (and web browsers): if no `Content-Length`, no `Connection: keep-alive` and no chunked transfer encoding, assume th rest of the data until EOF is the body, gracefully setting the HTTP client back to the disconnected state. Theoretically, this is not compliant with HTTP 1.1, by which `keep-alive` is the default, but in practice, an explicit header is sent by servers.