aboutsummaryrefslogtreecommitdiff
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | 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.
| * | | | | InputEvent: Restore old behaviour for matching key events to actions.Andreas Haas2017-05-301-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | Original code in 9100db7
* | | | | | Merge pull request #8981 from toger5/addedGrowFunctionRémi Verschelde2017-06-082-0/+23
|\ \ \ \ \ \ | | | | | | | | | | | | | | implemented grow(left,top,right,bottom) function
| * | | | | | added grow functions to Rect2toger52017-06-052-0/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - grow_individual - grow_margin
* | | | | | | Merge pull request #9015 from mcanders/mcanders/ParseObjectVariantFixRémi Verschelde2017-06-071-2/+6
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Fix Variant::OBJECT token parsing
| * | | | | | | Fix Variant::OBJECT token parsingCarter Anderson2017-06-041-2/+6
| | | | | | | |
* | | | | | | | renamed all Rect2.pos to Rect2.positionalexholly2017-06-0410-137/+137
|/ / / / / / /
* | | | | | | InputEvent: Renamed "pos" property to "position"Andreas Haas2017-06-032-38/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Make the naming consistent with other classes.
* | | | | | | Merge pull request #8973 from thomas-goerlich/8957_rand_range_bugfixRémi Verschelde2017-06-031-3/+1
|\ \ \ \ \ \ \ | |_|_|_|_|_|/ |/| | | | | | Fixed rand_range not returning correct random values on windows
| * | | | | | Changed enum to const because enum with uint64 size does not work on VSC++ ↵Thomas Görlich2017-05-291-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Compiler
* | | | | | | Merge pull request #9011 from karroffel/ptrcall-nightmare-fixRémi Verschelde2017-06-012-1/+2
|\ \ \ \ \ \ \ | |_|_|_|/ / / |/| | | | | | fixed PowerState enum cast
| * | | | | | fixed PowerState enum castKarroffel2017-06-012-1/+2
| | |_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Quite a while ago I made a commit (131631b) where I did a weird thing to fix compilation with PTRCALL_ENABLED. And I couldn't sleep because of this after all these months. So here is the proper version.