aboutsummaryrefslogtreecommitdiff
path: root/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #9195 from kubecz3k/obj-incoming-connectionsRémi Verschelde2017-06-272-0/+17
|\ | | | | Ability to get a list of signals that are targeting given object
| * Ability to get a list of signals that are targeting objectJakub Grzesik2017-06-152-0/+17
| |
* | -Added folding to property editor, persistent on objects it editsJuan Linietsky2017-06-254-0/+54
| | | | | | | | -Some changes to tree to support this properly
* | Fix crash with String copy from with NULL string parametergeequlim2017-06-251-0/+12
| |
* | Merge pull request #9334 from Noshyaar/pr-genhRémi Verschelde2017-06-253-5/+5
|\ \ | | | | | | BuildSystem: generated files have .gen.extension
| * | BuildSystem: generated files have .gen.extensionPoommetee Ketson2017-06-253-5/+5
| | |
* | | Merge pull request #9348 from bojidar-bg/9299-save-device-idsRémi Verschelde2017-06-251-0/+2
|\ \ \ | |/ / |/| | Make the InputEvent device property get saved
| * | Make the InputEvent device property get savedBojidar Marinov2017-06-241-0/+2
| | | | | | | | | | | | Fixes #9299
* | | Merge pull request #8783 from bojidar-bg/fix-range-loop-typeRémi Verschelde2017-06-241-20/+22
|\ \ \ | | | | | | | | Fix for..in range() resulting in floats instead of ints
| * | | Reimplement for..in range() so that it always results in intsBojidar Marinov2017-06-221-20/+22
| | | | | | | | | | | | | | | | Fixes #8278, fixup of bfef8de1bc4f7a7b9617a7b181881129033a0b0e
* | | | Added 'blit_rect_mask' for 3.0 toodumitru-stama2017-06-242-0/+58
| |/ / |/| |
* | | Remove methods from code completion which are already exposed by properties, ↵Juan Linietsky2017-06-232-3/+14
| | | | | | | | | | | | makes completion cleaner and more close to the documentation.
* | | Image: Fix wrong method DEFVALIgnacio Etcheverry2017-06-231-1/+1
| | |
* | | Fix shortcuts, make them visible again and work.Juan Linietsky2017-06-222-0/+43
|/ /
* | fixed ptrcall cast for const Ref<T>Karroffel2017-06-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Some methods require a const Ref<T> argument, the ptrcall method wrappers cast `void *` to the apropriate types. The problem is that there is no `Ref(const T *)` constructor, but since Ref modifies the refcount of a Reference anyway there's no point in a const version. The problem is that with a `const T *` constructor call, the argument gets converted to Variant first and loses all the reference information, resulting in a null reference as the argument to the constructor.
* | Fixed a string class bugdumitru-stama2017-06-191-1/+1
| |
* | Merge pull request #8870 from tagcup/pathfollowThomas Herzog2017-06-193-13/+16
|\ \ | | | | | | Fix PathFollow rotations.
| * | Fix PathFollow rotations.Ferenc Arn2017-05-313-13/+16
| | | | | | | | | | | | Used parallel transport to move the object along the curve. Also introduced a few more math checks useful for debugging.
* | | Merge pull request #9274 from vnen/compress-functionsThomas Herzog2017-06-193-0/+73
|\ \ \ | | | | | | | | Expose compression functions to GDScript
| * | | Add compression support for File objectGeorge Marques2017-06-192-0/+32
| | | |
| * | | Add basic compression functions to PoolBaseArrayGeorge Marques2017-06-191-0/+41
| | | |
* | | | Added two new methods to 3.0 'blend_rect_mask' and 'fill'd2017-06-182-0/+133
|/ / /
* | | Add normalmap support for drawing in all low level primitives. Only added ↵Juan Linietsky2017-06-171-0/+44
| | | | | | | | | | | | support in Sprite so far.
* | | Merge pull request #9231 from dumitru-stama/constimgGeorge Marques2017-06-162-2/+2
|\ \ \ | | | | | | | | Fixed a bug in get_pixel not being const
| * | | Fixed a bug in get_pixel not being constdumitru.stama2017-06-162-2/+2
| | | |
* | | | -Fix freezes caused by etccomp2, closes #9183Juan Linietsky2017-06-164-16/+27
|/ / / | | | | | | | | | -Normalmaps are now detected and imported as RGTC, both in S3TC and ETC2, this improves their quality.
* | | Merge pull request #9201 from vnen/rename-extensionsRémi Verschelde2017-06-161-1/+1
|\ \ \ | | | | | | | | Rename Godot-specific resource extensions
| * | | Rename Godot-specific resource extensionsGeorge Marques2017-06-151-1/+1
| | |/ | |/|
* | | Fixed memory leaksMarc Gilleron2017-06-161-1/+7
| | | | | | | | | | | | | | | - PoolVector leak - mesh_remove_surface leak
* | | doc: Sync classref with current sourceRémi Verschelde2017-06-151-1/+1
| | | | | | | | | | | | Tried to salvage what I could of the Image and InputEvent changes.
* | | Merge pull request #9177 from tagcup/gcc5_isinfRémi Verschelde2017-06-151-4/+4
|\ \ \ | |/ / |/| | Use inline code for isinf with gcc versions <6.
| * | Use inline code for isinf as a workaround for libstdc++ versions from gcc ↵Ferenc Arn2017-06-141-4/+4
| | | | | | | | | | | | | | | | | | 5.x era. Fixes #9166.
* | | Merge pull request #9157 from capnm/fix-https-requestRémi Verschelde2017-06-141-2/+12
|\ \ \ | | | | | | | | Don't append standard ports to the request header.
| * | | Don't append standard ports to the request header.Martin Capitanio2017-06-131-2/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Breaks the SSL communication with some servers, do the same that the other curl, wget, firefox & co clients do. Fixes #9146
* | | | Merge pull request #9158 from Hinsbart/script_templatesRémi Verschelde2017-06-141-0/+2
|\ \ \ \ | | | | | | | | | | Add ability to use custom script templates.
| * | | | Add ability to use custom script templates.Andreas Haas2017-06-131-0/+2
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Templates will be loaded from .godot/script_templates For now they're disabled for GDNative. Ideas for further improvements: - Add a "Save as Template" option to the script editor, as it can normally only save to res:// - Support more placeholders / custom placeholders
* | | | Merge pull request #9175 from bd339/iss9156Rémi Verschelde2017-06-141-10/+10
|\ \ \ \ | | | | | | | | | | Correct Image::blit_rect
| * | | | Rewrite Image::blit_rect to use the following algorithm:Benjamin Dahse2017-06-141-10/+10
| | |/ / | |/| | | | | | | | | | | | | | | | | | 1. Let r1 be the source rectangle clipped against the entire source image rectangle. 2. Let r2 be r1 offset by p_dest, clipped against the entire destination image rectangle. 3. Copy pixels from r1 to r2.
* | | | Merge pull request #9155 from kubecz3k/check-process-typeRémi Verschelde2017-06-142-0/+8
|\ \ \ \ | |/ / / |/| | | Ability to check if we are in fixed thread, solves: #3698
| * | | Fixed thread check, solves: #3698kubeczek2017-06-132-0/+8
| |/ /
* | | Merge pull request #8548 from tagcup/etc2compJuan Linietsky2017-06-133-15/+32
|\ \ \ | |/ / |/| | Add ETC1/ETC2 compression support though etc2comp.
| * | Add ETC1/ETC2 compression support though etc2comp.Ferenc Arn2017-05-313-15/+32
| | | | | | | | | | | | | | | | | | Remove rg-etc1 code. Also updated travis to use ubuntu 14.04. Fixes #8457.
* | | Expose zstd and zlib compression levels as global config.Ferenc Arn2017-06-112-5/+13
| | |
* | | Merge pull request #9104 from tagcup/zstdJuan Linietsky2017-06-115-7/+43
|\ \ \ | | | | | | | | Add zstd compression support.
| * | | Add zstd compression support.Ferenc Arn2017-06-085-7/+43
| | | | | | | | | | | | | | | | | | | | zstd has much better compression speed and ratio, and better decompression speed than currently available methods. Also set zstd as the default compression method for Compression as well as FileAccessCompressed functions.
* | | | Added EditorPlugin.remove_import_plugin()Zher Huei Lee2017-06-111-0/+1
| | | | | | | | | | | | | | | | | | | | Allows addons with import extensions to clean up properly on removal.
* | | | renamed all Rect3.pos to Rect3.positionalexholly2017-06-0917-216/+216
| | | |
* | | | -Restored multithread capability to VisualServerJuan Linietsky2017-06-095-22/+105
|/ / / | | | | | | | | | -Restored resource previews!
* | | Fix build error, commit bee81d5Poommetee Ketson2017-06-081-2/+2
| | |
* | | Merge pull request #9002 from Hinsbart/key_action_matchRémi Verschelde2017-06-081-1/+4
|\ \ \ | | | | | | | | InputEvent: Restore old behaviour for matching key events to actions.