Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-09-20 | Merge pull request #52398 from deakcor/dev-transform | Rémi Verschelde | |
2021-09-19 | Expose get_skew for transform2d and add new constructor | Vincent D | |
Expose set_scale and set_skew for transform2d Replacing float by real_t Adding const parameters Updated transform2d doc | |||
2021-09-17 | Allow indexing of String values in scripting languages | George Marques | |
2021-09-17 | Merge pull request #52450 from aaronfranke/they-came-from-scale | Rémi Verschelde | |
Replace Vector3.to_diagonal_matrix with Basis.from_scale | |||
2021-09-17 | Allow comparing equality between builtin types and null | George Marques | |
2021-09-17 | Replace Vector3.to_diagonal_matrix with Basis.from_scale | Aaron Franke | |
2021-09-13 | Added explicit type conversions | Matthew Newall | |
2021-09-07 | Implement properties arrays in the Inspector. | Gilles Roudière | |
2021-09-01 | Merge pull request #52270 from KoBeWi/goodbye_polar | George Marques | |
Remove cartesian2polar and polar2cartesian | |||
2021-09-01 | Merge pull request #48237 from KoBeWi/they_came_from_angle | George Marques | |
Add Vector2.from_angle() method | |||
2021-08-31 | Add Vector2.from_angle() method | kobewi | |
2021-08-31 | Remove cartesian2polar and polar2cartesian | kobewi | |
2021-08-29 | Rename String::is_rel_path to String::is_relative_path | Wilson E. Alvarez | |
2021-08-28 | Merge pull request #47406 from mashumafi/master-Array-insert-rc | Max Hilbrunner | |
Array::insert consistent with Pool*Array::insert | |||
2021-08-28 | Merge pull request #43522 from qarmin/divide_by_zero_in_vectori | Max Hilbrunner | |
Fix crash when dividing by 0 in Vector2/3i | |||
2021-08-27 | Merge pull request #52090 from balloonpopper/bug52060 | Max Hilbrunner | |
Correct null and boolean values being capitalised by the str command | |||
2021-08-27 | Add an `Array.pop_at()` method to pop an element at an arbitrary index | Hugo Locurcio | |
Negative indices are supported to pop an element relative from the end. | |||
2021-08-26 | Correct null and boolean values being capitalised by the str command | Balloonpopper | |
2021-08-24 | Merge pull request #52041 from Rubonnek/expose-simplify-path | Max Hilbrunner | |
Expose `String.simplify_path` | |||
2021-08-24 | Expose String.simplify_path | Wilson E. Alvarez | |
2021-08-23 | Expose RID creation utilities. | reduz | |
* Exposed as utility functions. * Not very useful for script, but vital for creating servers using native extensions. | |||
2021-08-23 | Implement NativeExtension pointer arguments | reduz | |
* Allows calling into native extensions directly with a pointer * Makes it easier to implement some APIs more efficiently * Appears with a "*" in the documentation for the argument. * Implementing the pointer handling is entirely up to the implementation, although the extension API provides some hint. * AudioStream has been implemented as an example, allowing to create NativeExtension based AudioStreams. | |||
2021-08-22 | Replace BIND_VMETHOD by new GDVIRTUAL syntax | reduz | |
* New syntax is type safe. * New syntax allows for type safe virtuals in native extensions. * New syntax permits extremely fast calling. Note: Everything was replaced where possible except for `_gui_input` `_input` and `_unhandled_input`. These will require API rework on a separate PR as they work different than the rest of the functions. Added a new method flag METHOD_FLAG_OBJECT_CORE, used internally. Allows to not dump the core virtuals like `_notification` to the json API, since each language will implement those as it is best fits. | |||
2021-08-20 | Merge pull request #51902 from vnen/variant-internal-constructor | Rémi Verschelde | |
Fix initialization of objects in VariantInternal | |||
2021-08-19 | Fix initialization of objects in VariantInternal | George Marques | |
2021-08-18 | Merge pull request #51627 from mhilbrunner/todo-for-neikeq | Rémi Verschelde | |
2021-08-17 | Fixes to tests for Variant and Geometry3D | Aaron Franke | |
2021-08-17 | Namespaces instead of underscore prefix for binds | Max Hilbrunner | |
Thanks to neikeq for the initial work. Co-authored-by: Ignacio Roldán Etcheverry <neikeq@users.noreply.github.com> | |||
2021-08-15 | Fix crash when dividing by 0 in Vector2/3i | Rafał Mikrut | |
2021-08-11 | Merge pull request #38992 from Dragoncraft89/master | Rémi Verschelde | |
Error handling functions for GdScript | |||
2021-08-10 | Use Key enum instead of plain integers | Aaron Franke | |
2021-08-10 | Merge pull request #51017 from vnen/extension-fixes | Rémi Verschelde | |
2021-08-10 | Merge pull request #50682 from aaronfranke/basis-looking-at | Rémi Verschelde | |
Move code for looking_at to Basis | |||
2021-08-08 | [Text Server] Improve object (image/table) inline alignment. | bruvzg | |
2021-08-05 | Improve extension system | George Marques | |
- Fix library loading and initialization. - Add extra methods/parameters in the interface needed by extenstions. - Add Variant destructors and functions for extracting values and creating Variants from values. | |||
2021-08-05 | Fix a few default parameters in bindings | George Marques | |
They have the wrong type and cause issues with extensions. | |||
2021-08-01 | Move code for looking_at to Basis | Aaron Franke | |
2021-07-31 | Merge pull request #51084 from aaronfranke/no-dectime | Rémi Verschelde | |
Remove obsolete `dectime` method | |||
2021-07-30 | Remove obsolete "dectime" method | Aaron Franke | |
Replaced by "move_toward" | |||
2021-07-30 | VariantParser: Fix uninitialized ResourceParser funcs | Rémi Verschelde | |
They could cause a segfault when parsing values with ID "Resource" as apparently we never set a valid `func` for it. Fixes crash part of #42115. | |||
2021-07-30 | [Net] Fix Marshalls infinite recursion crash. | Fabio Alessandrelli | |
Variants like dictionaries and arrays can have cyclic references, which caused `encode_variant` to run an infinite recursion. Instead of keeping a stack and looking for cyclic references which would make serialization slower, this commit adds a `MAX_RECURSION_DEPTH` constant to Variant, and have `encode_variant` keep track of the current recursion depth, bailing when it's too high since this likely means a cyclic reference has been encountered. | |||
2021-07-27 | Merge pull request #50939 from vnen/fix-variant-bool-conversion | Rémi Verschelde | |
Change Variant bool conversion to uint8_t | |||
2021-07-27 | Change Variant bool conversion to uint8_t | George Marques | |
This ensures more portable conversion since not every path assume bool is 32-bits and there's no loss converting to 8-bits anyway. | |||
2021-07-27 | [Core] Make enum variant cast and encoding 64 bits | Fabio Alessandrelli | |
This should fix various issues where retrieving enum values from scripting languages would result in corrupted values (where 32 bits were valid, and the other 32 random data). | |||
2021-07-25 | Merge pull request #50809 from akien-mga/iterators-const-references | Rémi Verschelde | |
2021-07-25 | Use const references where possible for List range iterators | Rémi Verschelde | |
2021-07-25 | Fix various typos with codespell | luz paz | |
Found via `codespell -q 3 -S ./thirdparty,*.po,./DONORS.md -L ackward,ang,ans,ba,beng,cas,childs,childrens,dof,doubleclick,fave,findn,hist,inout,leapyear,lod,nd,numer,ois,ony,paket,seeked,sinc,switchs,te,uint` | |||
2021-07-24 | Merge pull request #50535 from ChristopheClaustre/packedbytearray_decode_api | Rémi Verschelde | |
Change in PackedByteArray decode api and docs | |||
2021-07-24 | New to_***_array method to decode PackedByteArray to Packed***Array | ChristopheClaustre | |
Documentation for new PackedByteArray::to_***_array methods Documentation for to_byte_array method for PackedInt32/Int64/Float32/Float64Array | |||
2021-07-23 | Use C++ iterators for Lists in many situations | Aaron Franke | |