Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-06-24 | Added 'blit_rect_mask' for 3.0 too | dumitru-stama | |
2017-06-23 | Remove methods from code completion which are already exposed by properties, ↵ | Juan Linietsky | |
makes completion cleaner and more close to the documentation. | |||
2017-06-23 | Image: Fix wrong method DEFVAL | Ignacio Etcheverry | |
2017-06-22 | Fix shortcuts, make them visible again and work. | Juan Linietsky | |
2017-06-20 | fixed ptrcall cast for const Ref<T> | Karroffel | |
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. | |||
2017-06-19 | Fixed a string class bug | dumitru-stama | |
2017-06-19 | Merge pull request #8870 from tagcup/pathfollow | Thomas Herzog | |
Fix PathFollow rotations. | |||
2017-06-19 | Merge pull request #9274 from vnen/compress-functions | Thomas Herzog | |
Expose compression functions to GDScript | |||
2017-06-19 | Add compression support for File object | George Marques | |
2017-06-19 | Add basic compression functions to PoolBaseArray | George Marques | |
2017-06-18 | Added two new methods to 3.0 'blend_rect_mask' and 'fill' | d | |
2017-06-17 | Add normalmap support for drawing in all low level primitives. Only added ↵ | Juan Linietsky | |
support in Sprite so far. | |||
2017-06-16 | Merge pull request #9231 from dumitru-stama/constimg | George Marques | |
Fixed a bug in get_pixel not being const | |||
2017-06-16 | -Fix freezes caused by etccomp2, closes #9183 | Juan Linietsky | |
-Normalmaps are now detected and imported as RGTC, both in S3TC and ETC2, this improves their quality. | |||
2017-06-16 | Fixed a bug in get_pixel not being const | dumitru.stama | |
2017-06-16 | Merge pull request #9201 from vnen/rename-extensions | Rémi Verschelde | |
Rename Godot-specific resource extensions | |||
2017-06-16 | Fixed memory leaks | Marc Gilleron | |
- PoolVector leak - mesh_remove_surface leak | |||
2017-06-15 | Rename Godot-specific resource extensions | George Marques | |
2017-06-15 | doc: Sync classref with current source | Rémi Verschelde | |
Tried to salvage what I could of the Image and InputEvent changes. | |||
2017-06-15 | Merge pull request #9177 from tagcup/gcc5_isinf | Rémi Verschelde | |
Use inline code for isinf with gcc versions <6. | |||
2017-06-14 | Use inline code for isinf as a workaround for libstdc++ versions from gcc ↵ | Ferenc Arn | |
5.x era. Fixes #9166. | |||
2017-06-14 | Merge pull request #9157 from capnm/fix-https-request | Rémi Verschelde | |
Don't append standard ports to the request header. | |||
2017-06-14 | Merge pull request #9158 from Hinsbart/script_templates | Rémi Verschelde | |
Add ability to use custom script templates. | |||
2017-06-14 | Merge pull request #9175 from bd339/iss9156 | Rémi Verschelde | |
Correct Image::blit_rect | |||
2017-06-14 | Merge pull request #9155 from kubecz3k/check-process-type | Rémi Verschelde | |
Ability to check if we are in fixed thread, solves: #3698 | |||
2017-06-14 | Rewrite Image::blit_rect to use the following algorithm: | Benjamin Dahse | |
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. | |||
2017-06-13 | Merge pull request #8548 from tagcup/etc2comp | Juan Linietsky | |
Add ETC1/ETC2 compression support though etc2comp. | |||
2017-06-13 | Don't append standard ports to the request header. | Martin Capitanio | |
Breaks the SSL communication with some servers, do the same that the other curl, wget, firefox & co clients do. Fixes #9146 | |||
2017-06-13 | Add ability to use custom script templates. | Andreas Haas | |
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 | |||
2017-06-13 | Fixed thread check, solves: #3698 | kubeczek | |
2017-06-11 | Expose zstd and zlib compression levels as global config. | Ferenc Arn | |
2017-06-11 | Merge pull request #9104 from tagcup/zstd | Juan Linietsky | |
Add zstd compression support. | |||
2017-06-11 | Added EditorPlugin.remove_import_plugin() | Zher Huei Lee | |
Allows addons with import extensions to clean up properly on removal. | |||
2017-06-09 | renamed all Rect3.pos to Rect3.position | alexholly | |
2017-06-08 | Add zstd compression support. | Ferenc Arn | |
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. | |||
2017-06-09 | -Restored multithread capability to VisualServer | Juan Linietsky | |
-Restored resource previews! | |||
2017-06-08 | Fix build error, commit bee81d5 | Poommetee Ketson | |
2017-06-08 | Merge pull request #9002 from Hinsbart/key_action_match | Rémi Verschelde | |
InputEvent: Restore old behaviour for matching key events to actions. | |||
2017-06-08 | Merge pull request #8981 from toger5/addedGrowFunction | Rémi Verschelde | |
implemented grow(left,top,right,bottom) function | |||
2017-06-07 | Merge pull request #9015 from mcanders/mcanders/ParseObjectVariantFix | Rémi Verschelde | |
Fix Variant::OBJECT token parsing | |||
2017-06-05 | added grow functions to Rect2 | toger5 | |
- grow_individual - grow_margin | |||
2017-06-04 | Fix Variant::OBJECT token parsing | Carter Anderson | |
2017-06-04 | renamed all Rect2.pos to Rect2.position | alexholly | |
2017-06-03 | InputEvent: Renamed "pos" property to "position" | Andreas Haas | |
Make the naming consistent with other classes. | |||
2017-06-03 | Merge pull request #8973 from thomas-goerlich/8957_rand_range_bugfix | Rémi Verschelde | |
Fixed rand_range not returning correct random values on windows | |||
2017-06-01 | Merge pull request #9011 from karroffel/ptrcall-nightmare-fix | Rémi Verschelde | |
fixed PowerState enum cast | |||
2017-05-31 | Add ETC1/ETC2 compression support though etc2comp. | Ferenc Arn | |
Remove rg-etc1 code. Also updated travis to use ubuntu 14.04. Fixes #8457. | |||
2017-05-31 | rewritten PBR implementation to make it friendlier with Blender | Juan Linietsky | |
2017-06-01 | fixed PowerState enum cast | Karroffel | |
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. | |||
2017-05-31 | Fix PathFollow rotations. | Ferenc Arn | |
Used parallel transport to move the object along the curve. Also introduced a few more math checks useful for debugging. |