Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Sync classref with current source | Rémi Verschelde | 2018-05-28 | 1 | -0/+2 |
| | | | | Also fix binding of Basis.slerp | ||||
* | Merge pull request #14715 from Krakean/string_add_rsplit2 | Max Hilbrunner | 2018-05-23 | 1 | -0/+2 |
|\ | | | | | Added rsplit() method to String class | ||||
| * | Added rsplit() for String class | Dmitry Koteroff | 2017-12-15 | 1 | -0/+2 |
| | | | | | | | | Docs updated | ||||
* | | Add SLERP to Vector{2,3}, optimize Quat's Vector3 rotation. | tagcup | 2018-05-12 | 1 | -1/+17 |
| | | | | | | | | Also even out Basis and Quat APIs a little. | ||||
* | | Vector3::round, Vector2::round & Vector2::ceil methods were added. | Alexander Alekseev | 2018-05-04 | 1 | -0/+6 |
| | | | | | | | | | | Now both structs (Vector2 & Vector3) have round, floor & ceil methods. (see #18603) | ||||
* | | Merge pull request #16649 from ibrahn/visual-script-release-crash | Rémi Verschelde | 2018-05-01 | 1 | -1/+1 |
|\ \ | | | | | | | fix for segfault when using CallBasic in visual script on release build | ||||
| * | | fix for segfault when using CallBasic in visual script on release build | Ibrahn Sahir | 2018-02-12 | 1 | -1/+1 |
| | | | |||||
* | | | add string trim_prefix trim_suffix lstrip and rstrip methods | bosak | 2018-04-17 | 1 | -0/+8 |
| | | | |||||
* | | | Duplicate Arrays and Dictionaries when instancing scene in editor | Bojidar Marinov | 2018-03-13 | 1 | -4/+4 |
| | | | | | | | | | | | | | | | | | | Also, add deep (=false) parameter to Array.duplicate and Dictionary.duplicate Fixes #13971 | ||||
* | | | Bring back Vector2.cross() | Bernhard Liebl | 2018-03-07 | 1 | -2/+2 |
| | | | |||||
* | | | Merge pull request #15563 from poke1024/gdscript-shuffle | Rémi Verschelde | 2018-02-19 | 1 | -0/+2 |
|\ \ \ | | | | | | | | | Add shuffle() method to Array | ||||
| * | | | Add shuffle() method to Array | poke1024 | 2018-01-10 | 1 | -0/+2 |
| | | | | |||||
* | | | | Merge pull request #15852 from poke1024/color_hsv | Rémi Verschelde | 2018-02-19 | 1 | -0/+2 |
|\ \ \ \ | |_|/ / |/| | | | Add Color.from_hsv() | ||||
| * | | | Add Color.from_hsv() | Bernhard Liebl | 2018-01-18 | 1 | -0/+2 |
| |/ / | |||||
* | | | Fix broken variant call of Vector3.snapped | Timur Celik | 2018-02-03 | 1 | -1/+1 |
| | | | |||||
* | | | Fix wrong return type of xform functions | Poommetee Ketson | 2018-01-30 | 1 | -4/+4 |
|/ / | |||||
* | | Add missing copyright headers and fix formatting | Rémi Verschelde | 2018-01-05 | 1 | -0/+1 |
| | | | | | | | | | | | | Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module. | ||||
* | | Merge pull request #15220 from ibrahn/variantcall-defargs-fix | Rémi Verschelde | 2018-01-03 | 1 | -2/+3 |
|\ \ | | | | | | | fix VariantCall default parameter ordering | ||||
| * | | fix VariantCall default parameter ordering | Ibrahn Sahir | 2017-12-31 | 1 | -2/+3 |
| | | | |||||
* | | | Update copyright statements to 2018 | Rémi Verschelde | 2018-01-01 | 1 | -2/+2 |
|/ / | | | | | | | Happy new year to the wonderful Godot community! | ||||
* / | Dictionary::copy -> ::duplicate | Will Nations | 2017-12-17 | 1 | -0/+2 |
|/ | |||||
* | Added third argument for String.split() function (see issue #14349) | Dmitry Koteroff | 2017-12-15 | 1 | -2/+2 |
| | | | | | | | | Remove negative limit, leave only positive and make it reflect behaviour like in Python Also limit renamed to maxsplit to match Python one. Also docs updated. Fix indent | ||||
* | Merge pull request #13347 from Noshyaar/hang_in_there | Rémi Verschelde | 2017-12-09 | 1 | -0/+2 |
|\ | | | | | Rect2: add function returning same rect with positive w and h | ||||
| * | Rect2: add function returning same rect with positive w and h | Poommetee Ketson | 2017-11-28 | 1 | -0/+2 |
| | | |||||
* | | Style: Apply new clang-format 5.0 style to all files | Rémi Verschelde | 2017-12-07 | 1 | -3/+3 |
|/ | |||||
* | Made Vector::ptrw explicit for writing, compiler was sometimes using the ↵ | Juan Linietsky | 2017-11-25 | 1 | -1/+1 |
| | | | | | | wrong function, leading to unnecesary copy on writes and reduced performance. | ||||
* | Make tween able to be used as before (without the need for ":...") | Bojidar Marinov | 2017-11-22 | 1 | -0/+2 |
| | | | | Fixes #13174 | ||||
* | Merge pull request #12371 from donkeybonks/color-lighten-darken | Rémi Verschelde | 2017-11-22 | 1 | -0/+4 |
|\ | | | | | Add Color.lighten and Color.darken (like LESS.css or SASS) #2 | ||||
| * | Add Color.lightened and Color.darkened (like LESS.css or SASS) | Kyle Van Berendonck | 2017-11-21 | 1 | -0/+4 |
| | | |||||
* | | Merge pull request #13151 from akien-mga/basis-vector3-constructor | Rémi Verschelde | 2017-11-22 | 1 | -6/+0 |
|\ \ | | | | | | | Properly implement Basis constructor using Vector3 of Euler angles | ||||
| * | | Properly implement Basis constructor using Vector3 of Euler angles | Rémi Verschelde | 2017-11-21 | 1 | -6/+0 |
| | | | | | | | | | | | | Fixes #13104. | ||||
* | | | Merge pull request #12284 from bojidar-bg/allow-subproperty-set | Rémi Verschelde | 2017-11-21 | 1 | -2/+2 |
|\ \ \ | |/ / |/| | | Allow for getting/setting "dotted" properties of objects | ||||
| * | | Allow for getting/setting indexed properties of objects using get/set_indexed | Bojidar Marinov | 2017-11-21 | 1 | -2/+2 |
| | | | | | | | | | | | | Performance is around the same as using pure set() through GDScript. | ||||
* | | | Add bsearch and bsearch_custom to Array | poke1024 | 2017-11-21 | 1 | -0/+4 |
| |/ |/| | |||||
* | | Rename Rect3 to AABB. | Ferenc Arn | 2017-11-17 | 1 | -49/+49 |
|/ | | | | Fixes #12973. | ||||
* | Fixed dedent() binding did not return result | Zher Huei Lee | 2017-11-05 | 1 | -1/+1 |
| | |||||
* | Added String::dedent() to remove text indentation | Zher Huei Lee | 2017-11-01 | 1 | -0/+2 |
| | | | | | | | This functions similarly to Python's textwrap.dedent() It's also been applied to doc_data.cpp to remove extra whitespace while parsing the XML. | ||||
* | Added difference between function which return value or not | Захаров Андрей | 2017-10-30 | 1 | -292/+307 |
| | | | | | | Now ADDFUNC with suffix R add function with return value. It was changed because addfunc considers that the function doesn't return a value if it returns NIL. | ||||
* | Fixed constness of variant functions, as well as visual script sequence ↵ | Juan Linietsky | 2017-09-25 | 1 | -21/+49 |
| | | | | ports. Closes #11258 | ||||
* | Rename pos to position in user facing methods and variables | letheed | 2017-09-20 | 1 | -10/+10 |
| | | | | | | | | | | | Rename user facing methods and variables as well as the corresponding C++ methods according to the folloming changes: * pos -> position * rot -> rotation * loc -> location C++ variables are left as is. | ||||
* | Merge pull request #11106 from hpvb/documentation-fix-poolarrays | Rémi Verschelde | 2017-09-12 | 1 | -1/+1 |
|\ | | | | | Correct the Pool*Array documentation | ||||
| * | Correct the Pool*Array documentation | Hein-Pieter van Braam | 2017-09-09 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #11028 from mrawlingst/color-RGBA32 | Rémi Verschelde | 2017-09-12 | 1 | -4/+4 |
|\ \ | |/ |/| | Change Color.to_32() to Color.to_rgba32() and lowercase other functions | ||||
| * | Change Color.to_32() to to_rgba32() and format as RGBA | mrawlingst | 2017-09-07 | 1 | -4/+4 |
| | | |||||
* | | -Fixed changes to default input actions not working, closes #10502 | Juan Linietsky | 2017-09-06 | 1 | -0/+2 |
|/ | | | | -Added Array.duplicate() method, needed to fix above | ||||
* | Remove Basis::set_scale and Basis::set_rotation_* functions. | Ferenc Arn | 2017-08-29 | 1 | -6/+0 |
| | | | | | | Those functions were added in #8277 but they did more harm than good. They're subtle, don't do what people think and requires users to understand the non-uniqueness of polar decomposition. They ended up confusing people. Until we store additional information enough to make a unique polar decomposition, these functions shouldn't be a part of Basis. | ||||
* | Use HTTPS URL for Godot's website in the headers | Rémi Verschelde | 2017-08-27 | 1 | -1/+1 |
| | |||||
* | Exposed Transform.interpolate_with() | Przemysław Gołąb (n-pigeon) | 2017-08-20 | 1 | -1/+3 |
| | | | | Additionaly changed values names for 2D version to more descriptive ones. | ||||
* | Moved member variables from constructor to initialization list | Wilson E. Alvarez | 2017-08-08 | 1 | -3/+3 |
| | |||||
* | Add GZIP compression support | George Marques | 2017-07-13 | 1 | -1/+1 |
| | | | | - Fix a wrong call in PoolByteArray::compress |